Spaces:
Sleeping
Sleeping
| [DEFAULT] | |
| # This section defines default configuration settings | |
| # that the Streamlit UI or app will use. | |
| # Title text that appears at the top of the Streamlit web page. | |
| PAGE_TITLE = LangGraph: Agentic AI | |
| # List of available Large Language Model (LLM) providers shown in the UI dropdown. | |
| LLM_OPTIONS = Groq | |
| # List of available use cases that users can select from in the app. | |
| # For example: a simple chatbot, a chatbot that can browse the web, or an AI news assistant. | |
| USECASE_OPTIONS = Basic Chatbot, Chatbot With Web, AI News | |
| # List of model names available when the selected LLM provider is "Groq". | |
| # These are Groq-hosted versions of Meta’s Llama models with different sizes and capabilities. | |
| GROQ_MODEL_OPTIONS = llama-3.1-8b-instant, llama-3.3-70b-versatile | |