Advertisement
Guest User

Untitled

a guest
Nov 28th, 2023
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. MONGODB_URL=mongodb://localhost:27017
  2. USE_LOCAL_WEBSEARCH=true
  3. HF_ACCESS_TOKEN=hf_none
  4. MODELS=`[
  5. {
  6. "name": "Llama-13B",
  7. "chatPromptTemplate": "Below is an instruction that describes a task. Write a response that appropriately completes the request.{{preprompt}}\nInstruction:{{#each messages}}{{#ifUser}}{{content}}\nResponse:{{/ifUser}}{{#ifAssistant}}{{content}}{{/ifAssistant}}{{/each}}",
  8. "parameters": {
  9. "temperature": 0.1,
  10. "top_p": 0.95,
  11. "repetition_penalty": 1.2,
  12. "top_k": 50,
  13. "truncate": 3072,
  14. "max_new_tokens": 4096,
  15. "stop": ["<s>"]
  16. },
  17. "endpoints": [{
  18. "url": "http://127.0.0.1:8080",
  19. "type": "llamacpp"
  20. }
  21. ]
  22. }
  23. ]`
  24.  
  25. # server -m D:\TextGen\models\zephyr\mythomax-l2-13b.Q5_K_M.gguf -c 4096 -n 1 -np 3 --gpu-layers 64
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement