Instructions to use forestai/fireact_llama_2_7b with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use forestai/fireact_llama_2_7b with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="forestai/fireact_llama_2_7b")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("forestai/fireact_llama_2_7b") model = AutoModelForCausalLM.from_pretrained("forestai/fireact_llama_2_7b") - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use forestai/fireact_llama_2_7b with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "forestai/fireact_llama_2_7b" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "forestai/fireact_llama_2_7b", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/forestai/fireact_llama_2_7b
- SGLang
How to use forestai/fireact_llama_2_7b 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 "forestai/fireact_llama_2_7b" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "forestai/fireact_llama_2_7b", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'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 "forestai/fireact_llama_2_7b" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "forestai/fireact_llama_2_7b", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use forestai/fireact_llama_2_7b with Docker Model Runner:
docker model run hf.co/forestai/fireact_llama_2_7b
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,47 @@
|
|
| 1 |
---
|
| 2 |
license: mit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
pipeline_tag: text-generation
|
| 6 |
+
tags:
|
| 7 |
+
- facebook
|
| 8 |
+
- meta
|
| 9 |
+
- pytorch
|
| 10 |
+
- llama
|
| 11 |
+
- llama-2
|
| 12 |
---
|
| 13 |
+
|
| 14 |
+
**Website**: [FireAct Agent](https://fireact-agent.github.io)
|
| 15 |
+
|
| 16 |
+
# **FireAct Llama-2/CodeLlama**
|
| 17 |
+
FireAct Llama/CodeLlama is a collection of fine-tuned generative text models for performaning ReAct with external search tools. Links to other models can be found in the Index section.
|
| 18 |
+
|
| 19 |
+
## Foundation Model Details
|
| 20 |
+
*Note: As the foundation models, Llama-2 and CodeLlama, are developed by Meta, please also read the guidence and license on their website, [Llama-2](https://huggingface.co/meta-llama) and [CodeLlama](https://huggingface.co/codellama), before using FireAct models.*
|
| 21 |
+
|
| 22 |
+
**Model Developers** Sysmtem 2 Research, Cambridge LTL, Monash University, Princeton PLI.
|
| 23 |
+
|
| 24 |
+
**Variations** FireAct models including Llama-2-7B full fine-tuned models, and Llama-2-[7B,13B], CodeLlama-[7B,13B,34B] LoRA fine-tuned models. All released models are fine-tuned on multi-task (HotpotQA/StrategyQA/MMLU) and multi-types (ReAct/CoT/Reflexion) data.
|
| 25 |
+
|
| 26 |
+
**Input** Models input text only.
|
| 27 |
+
|
| 28 |
+
**Output** Models generate text only.
|
| 29 |
+
|
| 30 |
+
## Index
|
| 31 |
+
**Full Fine-tuned Model**
|
| 32 |
+
|
| 33 |
+
FireAct Llama-2:
|
| 34 |
+
- [fireact_llama_2_7b](https://huggingface.co/forestai/fireact_llama_2_7b)
|
| 35 |
+
|
| 36 |
+
**LoRA Fine-tuned Model**
|
| 37 |
+
|
| 38 |
+
FireAct Llama-2:
|
| 39 |
+
- [fireact_llama_2_7b_lora](https://huggingface.co/forestai/fireact_llama_2_7b_lora)
|
| 40 |
+
- [fireact_llama_2_13b_lora](https://huggingface.co/forestai/fireact_llama_2_13b_lora)
|
| 41 |
+
|
| 42 |
+
FireAct CodeLlama:
|
| 43 |
+
- [fireact_codellama_7b_lora](https://huggingface.co/forestai/fireact_codellama_7b_lora)
|
| 44 |
+
- [fireact_codellama_13b_lora](https://huggingface.co/forestai/fireact_codellama_13b_lora)
|
| 45 |
+
- [fireact_codellama_34b_lora](https://huggingface.co/forestai/fireact_codellama_34b_lora)
|
| 46 |
+
|
| 47 |
+
|