feat: Add ThinkPath Chatbot application with guided thinking paths and local LLM integration
This commit is contained in:
parent
49efda65ef
commit
2c5dc584a2
9 changed files with 21 additions and 25 deletions
12
.claude/settings.local.json
Normal file
12
.claude/settings.local.json
Normal file
|
|
@ -0,0 +1,12 @@
|
||||||
|
{
|
||||||
|
"permissions": {
|
||||||
|
"allow": [
|
||||||
|
"WebSearch",
|
||||||
|
"WebFetch(domain:docs.agno.com)",
|
||||||
|
"mcp__agno__search"
|
||||||
|
],
|
||||||
|
"deny": [],
|
||||||
|
"ask": [],
|
||||||
|
"defaultMode": "acceptEdits"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -1,21 +0,0 @@
|
||||||
MIT License
|
|
||||||
|
|
||||||
Copyright (c) 2025 Ahmed El-Taher
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in all
|
|
||||||
copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
||||||
SOFTWARE.
|
|
||||||
|
|
@ -155,6 +155,15 @@ A curated collection of **Awesome LLM apps built with RAG, AI Agents, Multi-agen
|
||||||
|
|
||||||
* [🔧 Llama 3.2 Fine-tuning](advanced_llm_apps/llm_finetuning_tutorials/llama3.2_finetuning/)
|
* [🔧 Llama 3.2 Fine-tuning](advanced_llm_apps/llm_finetuning_tutorials/llama3.2_finetuning/)
|
||||||
|
|
||||||
|
### 🧑🏫 AI Agent Framework Crash Course
|
||||||
|
|
||||||
|
- [Google ADK Crash Course](ai_agent_framework_crash_course/google_adk_crash_course/)
|
||||||
|
- Starter agent; model‑agnostic (OpenAI, Claude)
|
||||||
|
- Structured outputs (Pydantic)
|
||||||
|
- Tools: built‑in, function, third‑party, MCP tools
|
||||||
|
- Memory; callbacks; Plugins
|
||||||
|
- Simple multi‑agent; Multi‑agent patterns
|
||||||
|
|
||||||
## 🚀 Getting Started
|
## 🚀 Getting Started
|
||||||
|
|
||||||
1. **Clone the repository**
|
1. **Clone the repository**
|
||||||
|
|
|
||||||
|
|
@ -240,10 +240,6 @@ We welcome contributions! Here's how you can help:
|
||||||
- **Features**: New thinking methodologies and tools
|
- **Features**: New thinking methodologies and tools
|
||||||
- **Documentation**: Tutorials, guides, and examples
|
- **Documentation**: Tutorials, guides, and examples
|
||||||
|
|
||||||
## 📝 **License**
|
|
||||||
|
|
||||||
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
|
||||||
|
|
||||||
## 🙏 **Acknowledgments**
|
## 🙏 **Acknowledgments**
|
||||||
|
|
||||||
- **Ollama**: For making local LLM deployment accessible
|
- **Ollama**: For making local LLM deployment accessible
|
||||||
Loading…
Reference in a new issue