Код: Выделить всё
UserWarning: Valid config keys have changed in V2:
* 'fields' has been removed
warnings.warn(message, UserWarning)
Код: Выделить всё
from smolagents import CodeAgent, HfApiModel
agent = CodeAgent(tools=[], model=HfApiModel())
while True:
user_input = input("You: ")
if user_input.lower() == "exit":
print("Goodbye!")
break
try:
response = agent.provide_final_answer(user_input)
print(f"Assistant: {response}")
except Exception as e:
print(f"An error occurred: {e}")
Я пытался игнорировать его, но не помогло
Подробнее здесь: https://stackoverflow.com/questions/793 ... en-removed
Мобильная версия