Safetensors
GGUF
Turkish
llama
Llama-3
instruct
finetune
chatml
gpt4
synthetic data
distillation
function calling
json mode
axolotl
roleplaying
chat
Instructions to use tda45/TdAI with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use tda45/TdAI with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="tda45/TdAI", filename="llama.cpp/models/ggml-vocab-aquila.gguf", )
output = llm( "Once upon a time,", max_tokens=512, echo=True ) print(output)
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use tda45/TdAI with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf tda45/TdAI # Run inference directly in the terminal: llama cli -hf tda45/TdAI
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf tda45/TdAI # Run inference directly in the terminal: llama cli -hf tda45/TdAI
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf tda45/TdAI # Run inference directly in the terminal: ./llama-cli -hf tda45/TdAI
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf tda45/TdAI # Run inference directly in the terminal: ./build/bin/llama-cli -hf tda45/TdAI
Use Docker
docker model run hf.co/tda45/TdAI
- LM Studio
- Jan
- Ollama
How to use tda45/TdAI with Ollama:
ollama run hf.co/tda45/TdAI
- Unsloth Studio
How to use tda45/TdAI with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for tda45/TdAI to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for tda45/TdAI to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for tda45/TdAI to start chatting
- Atomic Chat new
- Docker Model Runner
How to use tda45/TdAI with Docker Model Runner:
docker model run hf.co/tda45/TdAI
- Lemonade
How to use tda45/TdAI with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tda45/TdAI
Run and chat with the model
lemonade run user.TdAI-{{QUANT_TAG}}List all available models
lemonade list
| // README Content | |
| export const README_MD = String.raw` | |
| # π Awesome Web Framework | |
| [](https://www.npmjs.com/package/awesome-framework) | |
| [](https://github.com/awesome/framework/actions) | |
| [](https://codecov.io/gh/awesome/framework) | |
| [](https://opensource.org/licenses/MIT) | |
| > A modern, fast, and flexible web framework for building scalable applications | |
| ## β¨ Features | |
| - π― **Type-Safe** - Full TypeScript support out of the box | |
| - β‘ **Lightning Fast** - Built on Vite for instant HMR | |
| - π¦ **Zero Config** - Works out of the box for most use cases | |
| - π¨ **Flexible** - Unopinionated with sensible defaults | |
| - π§ **Extensible** - Plugin system for custom functionality | |
| - π± **Responsive** - Mobile-first approach | |
| - π **i18n Ready** - Built-in internationalization | |
| - π **Secure** - Security best practices by default | |
| ## π¦ Installation | |
| ${'```'}bash | |
| npm install awesome-framework | |
| # or | |
| yarn add awesome-framework | |
| # or | |
| pnpm add awesome-framework | |
| ${'```'} | |
| ## π Quick Start | |
| ### Create a new project | |
| ${'```'}bash | |
| npx create-awesome-app my-app | |
| cd my-app | |
| npm run dev | |
| ${'```'} | |
| ### Basic Example | |
| ${'```'}javascript | |
| import { createApp } from 'awesome-framework'; | |
| const app = createApp({ | |
| port: 3000, | |
| middleware: ['cors', 'helmet', 'compression'] | |
| }); | |
| app.get('/', (req, res) => { | |
| res.json({ message: 'Hello World!' }); | |
| }); | |
| app.listen(() => { | |
| console.log('Server running on http://localhost:3000'); | |
| }); | |
| ${'```'} | |
| ## π Documentation | |
| ### Core Concepts | |
| - [Getting Started](https://docs.awesome.dev/getting-started) | |
| - [Configuration](https://docs.awesome.dev/configuration) | |
| - [Routing](https://docs.awesome.dev/routing) | |
| - [Middleware](https://docs.awesome.dev/middleware) | |
| - [Database](https://docs.awesome.dev/database) | |
| - [Authentication](https://docs.awesome.dev/authentication) | |
| ### Advanced Topics | |
| - [Performance Optimization](https://docs.awesome.dev/performance) | |
| - [Deployment](https://docs.awesome.dev/deployment) | |
| - [Testing](https://docs.awesome.dev/testing) | |
| - [Security](https://docs.awesome.dev/security) | |
| ## π οΈ Development | |
| ### Prerequisites | |
| - Node.js >= 18 | |
| - pnpm >= 8 | |
| ### Setup | |
| ${'```'}bash | |
| git clone https://github.com/awesome/framework.git | |
| cd framework | |
| pnpm install | |
| pnpm dev | |
| ${'```'} | |
| ### Testing | |
| ${'```'}bash | |
| pnpm test # Run unit tests | |
| pnpm test:e2e # Run end-to-end tests | |
| pnpm test:watch # Run tests in watch mode | |
| ${'```'} | |
| ## π€ Contributing | |
| We welcome contributions! Please see our [Contributing Guide](CONTRIBUTING.md) for details. | |
| ### Contributors | |
| <a href="https://github.com/awesome/framework/graphs/contributors"> | |
| <img src="https://contrib.rocks/image?repo=awesome/framework" /> | |
| </a> | |
| ## π Benchmarks | |
| | Framework | Requests/sec | Latency (ms) | Memory (MB) | | |
| |-----------|-------------|--------------|-------------| | |
| | **Awesome** | **45,230** | **2.1** | **42** | | |
| | Express | 28,450 | 3.5 | 68 | | |
| | Fastify | 41,200 | 2.3 | 48 | | |
| | Koa | 32,100 | 3.1 | 52 | | |
| *Benchmarks performed on MacBook Pro M2, Node.js 20.x* | |
| ## π License | |
| MIT Β© [Awesome Team](https://github.com/awesome) | |
| ## π Acknowledgments | |
| Special thanks to all our sponsors and contributors who make this project possible. | |
| --- | |
| **[Website](https://awesome.dev)** β’ **[Documentation](https://docs.awesome.dev)** β’ **[Discord](https://discord.gg/awesome)** β’ **[Twitter](https://twitter.com/awesomeframework)** | |
| `; | |