davidx08 commited on
Commit
2c351eb
·
verified ·
1 Parent(s): 9091d3b

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +46 -33
README.md CHANGED
@@ -2,49 +2,62 @@
2
  license: apache-2.0
3
  base_model: TinyLlama/TinyLlama-1.1B-Chat-v1.0
4
  tags:
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.
 
 
 
 
 
 
 
2
  license: apache-2.0
3
  base_model: TinyLlama/TinyLlama-1.1B-Chat-v1.0
4
  tags:
5
+ - travel
6
+ - tourism
7
+ - india
8
+ - hotels
9
+ - restaurants
10
+ - weather
11
+ - maps
12
+ - geolocation
13
+ - railways
14
+ - flights
15
+ - bus-routes
16
+ - nexuzy-lab
17
+ - gguf
18
+ - lora
19
  language:
20
+ - en
21
+ new_version: davidx08/atithi-ai
22
  pipeline_tag: text-generation
23
  library_name: transformers
24
  ---
25
 
26
+ # Atithi AI
27
+
28
+ Atithi AI is an India-focused travel, hotel, restaurant, and local discovery assistant built on `TinyLlama/TinyLlama-1.1B-Chat-v1.0` and developed by **David** at **Nexuzy Lab**, which is presented as a research and innovation division under **DEVIL ONE PVT LTD**.
29
 
30
  <p align="center">
31
  <img src="atitihi_logo.png" width="300" alt="Atithi AI Logo">
32
  </p>
33
 
34
+ ## Model scope
35
+ Atithi AI is intended as a compact domain-tuned assistant for the Indian ecosystem, supporting:
36
+ - Tourist destination discovery
37
+ - Hotel and stay assistance
38
+ - Restaurant and food place information
39
+ - Railway, flight, and bus travel context
40
+ - Weather-aware planning prompts
41
+ - Maps, routes, and location-driven assistance
42
+ - City-level and region-level travel recommendations
43
+ - Edge and local deployment workflows through GGUF compatibility
44
 
45
+ ## Developer information
46
+ - **Developer:** David
47
+ - **Developer Email:** david@nexuzy.in
48
+ - **Organization:** Nexuzy Lab
49
+ - **Parent Company:** DEVIL ONE PVT LTD
50
+ - **Website:** https://nexuzy.in/index.php
51
 
52
+ ## Features
53
+ - Fine-tuned from a small, efficient base model for lightweight deployment.
 
 
 
54
  - Knowledge of 27,000+ Indian restaurants.
55
+ - India-specific travel and hospitality orientation.
56
+ - GGUF compatible for edge deployment.
57
+
58
+ ## Usage with Transformers
59
+ ```python
60
+ from transformers import AutoTokenizer, AutoModelForCausalLM
61
+ model = AutoModelForCausalLM.from_pretrained("davidx08/atithi-ai")
62
+ tokenizer = AutoTokenizer.from_pretrained("davidx08/atithi-ai")
63
+ ```