Replies: 1 comment
-
Here is a solution using a |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
The beauty of LLMs is the ability to have conversations.
I am trying to use
smolagents
to have a conversation with a human and extract some information, e.g. name, hobbies, etc. The agent should keep going until all the information has been gathered. The agent may choose to introduce questions or topics that are not relevant to the task, to make the conversation more interesting, etc.A nice (and very French) way of framing this problem is the Proust Questionnaire.
When I try a simple prompt,
smolagents
generates a code snippets that terminates right away.The code snippet should either implement a sequence of questions/answers; or should do a
while True
to provide some back and forth until the questions have been asked and the answers collected.Beta Was this translation helpful? Give feedback.
All reactions