tcod_7b_f2b for ALFWorld
This model is for ALFWorld.
Download
Use Hugging Face Hub:
from huggingface_hub import snapshot_download
model_dir = snapshot_download("kolerk/tcod_7b_f2b")
print(model_dir)
Or clone with Git LFS:
git lfs install
git clone https://huggingface.co/kolerk/tcod_7b_f2b
Install from pip and serve model
# Install vLLM from pip: pip install vllm# Start the vLLM server: vllm serve "kolerk/tcod_7b_f2b"# Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "kolerk/tcod_7b_f2b", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'