-
Notifications
You must be signed in to change notification settings - Fork 713
Add Detailed Setup Guide and Improve Documentation #70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
client = genai.Client( | ||
api_key=os.getenv("GEMINI_API_KEY", "your-api_key"), | ||
) | ||
4. **Configure LLM access** |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe also mention something like: for other llm vendors or local llm, implement call_llm
function that takes prompt string as input, and output the response string
|
||
# Or, analyze a local directory |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
could you keep these just in readme? I love the detailed instructions! But having two files may be confusing. If the worry is that there are too many texts, we can try collapsible section in markdown to hide texts? https://gist.github.com/pierrejoubert73/902cc94d79424356a8d20be2b382e1ab
@@ -1,7 +1,12 @@ | |||
pocketflow>=0.0.1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why pocketflow is removed?
This is very cool! Do you mind addressing the comments and resolve the conflicts? |
This PR introduces a comprehensive SETUP.md file and improves the existing README.md to enhance the onboarding experience for new users and contributors.
Changes :
New SETUP.md: A detailed, step-by-step guide to help users install and configure the project quickly and correctly.
Updated README.md: Improved structure, clearer explanations, and links to the setup guide.