It's available on Meta's Llama-3 release blog post. https://
unwindai.substack.com/p/llama-3-the-
best-opensource-llm?utm_source=publication-search
…
@saboo_shubham_
-
Meta Releases Llama-3 Open Source LLM Model
By
–
-
LLM Tips and Tutorials Guide
By
–
If you find this useful, RT to share it with your friends. Don't forget to follow me @Saboo_Shubham_ for more such LLMs tips and tutorials.
-
Awesome LLM Apps Demo with RAG on GitHub
By
–
Find all the awesome LLM Apps demo with RAG in the following Github Repo. P.S: Don't forget to star the repo to show your support
-
Investment Agent Demo Application Using Streamlit
By
–
Working Application demo using Streamlit
— Shubham Saboo (@Saboo_Shubham_) 2 juin 2024
Paste the above code in vscode or pycharm and run the following command: 'streamlit run investment_agent.py' pic.twitter.com/w8RP6iCNRZWorking Application demo using Streamlit Paste the above code in vscode or pycharm and run the following command: 'streamlit run investment_agent.py'
-

Full RAG Application Code for Investment Agent Chat
By
–
Full RAG Application code to chat with investment agent
-
Building an Investment Agent Chat Interface with Streamlit
By
–
5. Chat with your Investment Agent • Create a text input for the user to enter their query using 'st.text_input()'
• If a question is asked, run the assistant to get the answer and display it using 'st.write()' -

Building AI Assistant with OpenAI API and Financial Tools
By
–
4. Create and Initialize the AI assistant • Create a text input to enter their OpenAI API key using 'st.text_input()'
• If the OpenAI API key is provided, create an instance of Assistant with gpt-40 as LLM and YFinanceTools as the tool. -

Setting up Streamlit App UI with Python Code
By
–
3. Set up the Streamlit App Streamlit lets you create user interface with just python code, for this app we will:
• Add a title to the app using 'st.title()'
• Add a description for the app using 'st.caption()' -

Essential Libraries for Building AI Agents with Streamlit
By
–
2. Import necessary libraries • Streamlit for building the web app
• Phidata for building AI agents
• OpenAI for using the gpt-4o -
Build AI Investment Agent with GPT-4o in 15 Python Lines
By
–
Build an AI Investment Agent with GPT-4o in just 15 lines of Python Code (step-by-step instructions):