Text Generation
Transformers
Safetensors
GGUF
English
llama
travel
tourism
india
hotels
restaurants
weather
maps
geolocation
railways
flights
bus-routes
nexuzy-lab
lora
conversational
text-generation-inference
Instructions to use davidx08/atithi-ai with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use davidx08/atithi-ai with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="davidx08/atithi-ai") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("davidx08/atithi-ai") model = AutoModelForCausalLM.from_pretrained("davidx08/atithi-ai", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use davidx08/atithi-ai 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 davidx08/atithi-ai # Run inference directly in the terminal: llama cli -hf davidx08/atithi-ai
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf davidx08/atithi-ai # Run inference directly in the terminal: llama cli -hf davidx08/atithi-ai
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 davidx08/atithi-ai # Run inference directly in the terminal: ./llama-cli -hf davidx08/atithi-ai
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 davidx08/atithi-ai # Run inference directly in the terminal: ./build/bin/llama-cli -hf davidx08/atithi-ai
Use Docker
docker model run hf.co/davidx08/atithi-ai
- LM Studio
- Jan
- vLLM
How to use davidx08/atithi-ai with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "davidx08/atithi-ai" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "davidx08/atithi-ai", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/davidx08/atithi-ai
- SGLang
How to use davidx08/atithi-ai with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "davidx08/atithi-ai" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "davidx08/atithi-ai", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "davidx08/atithi-ai" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "davidx08/atithi-ai", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use davidx08/atithi-ai with Ollama:
ollama run hf.co/davidx08/atithi-ai
- Unsloth Desktop
- Docker Model Runner
How to use davidx08/atithi-ai with Docker Model Runner:
docker model run hf.co/davidx08/atithi-ai
- Lemonade
How to use davidx08/atithi-ai with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull davidx08/atithi-ai
Run and chat with the model
lemonade run user.atithi-ai-{{QUANT_TAG}}List all available models
lemonade list
- Atomic Chat
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -5,25 +5,46 @@ tags:
|
|
| 5 |
- travel
|
| 6 |
- tourism
|
| 7 |
- india
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
- nexuzy-lab
|
| 9 |
- gguf
|
| 10 |
-
-
|
|
|
|
|
|
|
| 11 |
language:
|
| 12 |
- en
|
|
|
|
|
|
|
| 13 |
---
|
| 14 |
|
| 15 |
# ๐ฎ๐ณ Atithi AI - India's Digital Travel Companion
|
| 16 |
|
| 17 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
|
| 19 |
## ๐ Project Overview
|
| 20 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
|
| 22 |
-
##
|
| 23 |
-
- **
|
| 24 |
-
- **
|
| 25 |
-
- **Parent Conglomerate:** [DEVIL ONE PVT LTD](https://devilone.in)
|
| 26 |
|
| 27 |
-
##
|
| 28 |
-
-
|
| 29 |
-
-
|
|
|
|
|
|
|
|
|
| 5 |
- travel
|
| 6 |
- tourism
|
| 7 |
- india
|
| 8 |
+
- hotels
|
| 9 |
+
- restaurants
|
| 10 |
+
- weather
|
| 11 |
+
- railways
|
| 12 |
+
- flights
|
| 13 |
- nexuzy-lab
|
| 14 |
- gguf
|
| 15 |
+
- lora
|
| 16 |
+
- nexuzy
|
| 17 |
+
- devil-one
|
| 18 |
language:
|
| 19 |
- en
|
| 20 |
+
pipeline_tag: text-generation
|
| 21 |
+
library_name: transformers
|
| 22 |
---
|
| 23 |
|
| 24 |
# ๐ฎ๐ณ Atithi AI - India's Digital Travel Companion
|
| 25 |
|
| 26 |
+
<p align="center">
|
| 27 |
+
<img src="atitihi_logo.png" width="300" alt="Atithi AI Logo">
|
| 28 |
+
</p>
|
| 29 |
+
|
| 30 |
+
Atithi AI is an India-focused travel, hotel, restaurant, and local discovery assistant developed by **David** at **Nexuzy Lab** (Research division of **DEVIL ONE PVT LTD**).
|
| 31 |
|
| 32 |
## ๐ Project Overview
|
| 33 |
+
Fine-tuned on 173,000+ records covering Indian tourism, 27,000+ restaurants, railways, flights, and bus routes. Designed for local planning and localized information.
|
| 34 |
+
|
| 35 |
+
## ๐ค Developer & Company Information
|
| 36 |
+
- **Lead Developer:** David ([david@nexuzy.in](mailto:david@nexuzy.in))
|
| 37 |
+
- **Organization:** Nexuzy Lab ([nexuzylab@gmail.com](mailto:nexuzylab@gmail.com))
|
| 38 |
+
- **Parent Company:** DEVIL ONE PVT LTD ([https://devilone.in](https://devilone.in))
|
| 39 |
+
- **Official Website:** [https://nexuzy.in/index.php](https://nexuzy.in/index.php)
|
| 40 |
+
- **GitHub:** [https://github.com/david0154](https://github.com/david0154)
|
| 41 |
|
| 42 |
+
## ๐ Model Variants
|
| 43 |
+
- **Full Model:** Merged standalone weights for use with `transformers`.
|
| 44 |
+
- **GGUF Version:** 8-bit quantized file (`atithi-ai-v1.gguf`) for mobile/edge/local deployment via llama.cpp.
|
|
|
|
| 45 |
|
| 46 |
+
## ๐ก Features
|
| 47 |
+
- Knowledge of 27,000+ Indian restaurants.
|
| 48 |
+
- Indian Railways, Flight schedules, and Bus route context.
|
| 49 |
+
- Tourism destination discovery and budget hotel assistance.
|
| 50 |
+
- Optimized for compact, fast inference.
|