-
Hi, I want AutoGPT to use files I have created as input for its task. I have ingested the data and in my goals, I tell it not to go to the Internet to find more information. In short, I want it to take the information from an interview transcript and write an article from it. However, when I run the task with the goals, it keeps saying it needs the transcript, but I don't know how to provide it. So now, it's stuck in a do_nothing loop. Any tips?
Thanks, L |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 12 replies
-
Current version is only capable of reading .txt files. So the text you want it to read has to be in that format. Here is how I do it: Manually make two folders in the directory auto_gpt_workspace. Call the first one transcript. Put the text files you want it to read inside that directory. Add a line at the end of each file saying what to read next. I would write "Read 2.txt next" on a line by itself after the content. Make another one called article. Set Goal 1 like this: The directory transcripts is the working directory for you and your team from now on. All documents regarding this project can be found in the directory transcripts. Read the content of all the files in that directory before proceeding with any other goals. The content in those documents can NOT be ignored. Start reading 1.txt first. At the end of that document you will be instructed what to do next. Goal 2 will then be: Write an article only based on what you read. You are not allowed to use internet or Google to gather more information. You are not allowed to start any agents for this task. Save the article you wrote to the folder article. Name it article.txt Give it the role Article Writer |
Beta Was this translation helpful? Give feedback.
-
chatgpt offers the magic of user input. A real world example:
|
Beta Was this translation helpful? Give feedback.
Current version is only capable of reading .txt files. So the text you want it to read has to be in that format.
Here is how I do it:
Manually make two folders in the directory auto_gpt_workspace.
Call the first one transcript. Put the text files you want it to read inside that directory. Add a line at the end of each file saying what to read next. I would write "Read 2.txt next" on a line by itself after the content.
Make another one called article.
Set Goal 1 like this:
The directory transcripts is the working directory for you and your team from now on. All documents regarding this project can be found in the directory transcripts. Read the content of all the files in that directory be…