ThinkErCol/hospet
0
1MODELS=`[2 {3 "name": "Your Model",4 "promptExamples": [5 {6 "title": "Python Fibonacci",7 "prompt": "How can I write a Python function to generate the nth Fibonacci number?"8 }, {9 "title": "What is a meme?",10 "prompt": "What is a meme, and what's the history behind this word?"11 }, {12 "title": "Regex",13 "prompt": "Create a regex to extract dates from logs"14 }15 ],16 "endpoints": [17 {18 "type": "tgi",19 "url": "http://127.0.0.1:8080"20 }21 ],22 "parameters": {23 "temperature": 0.7,24 "top_p": 0.95,25 "repetition_penalty": 1.2,26 "top_k": 50,27 "truncate": 1000,28 "max_new_tokens": 1024,29 "stop": ["</s>", "<|>"]30 }31 }32]`33 34PUBLIC_APP_NAME="Your ChatUI App" 35 36MONGODB_URL=mongodb://localhost:27017