Skip to content

Commit

Permalink
Merge branch 'dev' into f/vertexai-client
Browse files Browse the repository at this point in the history
  • Loading branch information
creatorrr authored Sep 19, 2024
2 parents 87a8f6e + db6594f commit 5e8f4c8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/js-sdk-docs/modules/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ ___
| :------ | :------ | :------ |
| `messages` | [`InputChatMLMessage`](api.md#inputchatmlmessage)[] | A list of new input messages comprising the conversation so far. |
| `tool_choice?` | [`ToolChoiceOption`](api.md#toolchoiceoption) \| [`NamedToolChoice`](api.md#namedtoolchoice) \| ``null`` | Can be one of existing tools given to the agent earlier or the ones included in the request |
| `tools?` | [`Tool`](api.md#tool)[] \| ``null`` | (Advanced) List of tools that are provided in addition to agent's default set of tools. Functions of same name in agent set are overriden |
| `tools?` | [`Tool`](api.md#tool)[] \| ``null`` | (Advanced) List of tools that are provided in addition to agent's default set of tools. Functions of same name in agent set are overridden |

#### Defined in

Expand Down
6 changes: 3 additions & 3 deletions scheduler/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ services:
temporal-db:
condition: service_started
environment:
- DB=postgres12
- DB_PORT=5432
- DB_HOST=temporal-db
- DB=${TEMPORAL_POSTGRES_DB:-postgres12}
- DB_PORT=${TEMPORAL_POSTGRES_PORT:-5432}
- DB_HOST=${TEMPORAL_POSTGRES_HOST:-temporal-db}
- POSTGRES_USER=${TEMPORAL_POSTGRES_USER:-temporal}
- POSTGRES_PWD=${TEMPORAL_POSTGRES_PASSWORD}
- POSTGRES_SEEDS=temporal-db
Expand Down

0 comments on commit 5e8f4c8

Please sign in to comment.