Skip to content

Commit

Permalink
updating README env.js to enclude new models array
Browse files Browse the repository at this point in the history
  • Loading branch information
estohlmann committed Jun 5, 2024
1 parent d7ca3f4 commit 32fb4cb
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,24 @@ window.env = {
// Alternatively you can set this to be your REST api elb endpoint
RESTAPI_URI: 'http://localhost:8080/',
RESTAPI_VERSION: 'v2',
SESSION_REST_API_URI: '<API GW session endpoint>'
SESSION_REST_API_URI: '<API GW session endpoint>',
"MODELS": [
{
"model": "streaming-textgen-model",
"streaming": true,
"modelType": "textgen"
},
{
"model": "non-streaming-textgen-model",
"streaming": false,
"modelType": "textgen"
},
{
"model": "embedding-model",
"streaming": null,
"modelType": "embedding"
}
]
}
```

Expand Down

0 comments on commit 32fb4cb

Please sign in to comment.