From 9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d Mon Sep 17 00:00:00 2001 From: whiterabbit1983 Date: Wed, 1 May 2024 08:58:32 +0300 Subject: [PATCH 1/2] feat: Make docs content be splited by users (#303) --- .../agents_api/autogen/openapi_model.py | 8 +- agents-api/agents_api/clients/embed.py | 3 +- agents-api/agents_api/env.py | 4 + .../agents_api/models/docs/create_docs.py | 10 +- .../agents_api/routers/agents/routers.py | 5 +- .../agents_api/routers/users/routers.py | 5 +- openapi.yaml | 219 +++++++++++++----- 7 files changed, 178 insertions(+), 76 deletions(-) diff --git a/agents-api/agents_api/autogen/openapi_model.py b/agents-api/agents_api/autogen/openapi_model.py index fc3f995d4..f9aa80737 100644 --- a/agents-api/agents_api/autogen/openapi_model.py +++ b/agents-api/agents_api/autogen/openapi_model.py @@ -1,6 +1,6 @@ # generated by datamodel-codegen: # filename: openapi.yaml -# timestamp: 2024-04-26T08:42:42+00:00 +# timestamp: 2024-04-30T17:38:56+00:00 from __future__ import annotations @@ -632,12 +632,16 @@ class Doc(BaseModel): """ +class ContentItem(RootModel[str]): + root: Annotated[str, Field(min_length=1)] + + class CreateDoc(BaseModel): title: str """ Title describing what this bit of information contains """ - content: str + content: List[ContentItem] | str """ Information content """ diff --git a/agents-api/agents_api/clients/embed.py b/agents-api/agents_api/clients/embed.py index 52a684358..71742f6fb 100644 --- a/agents-api/agents_api/clients/embed.py +++ b/agents-api/agents_api/clients/embed.py @@ -1,5 +1,5 @@ import httpx -from ..env import embedding_service_url, truncate_embed_text +from ..env import embedding_service_url, truncate_embed_text, embedding_model_id async def embed( @@ -17,6 +17,7 @@ async def embed( "normalize": True, # FIXME: We should control the truncation ourselves and truncate before sending "truncate": truncate_embed_text, + "model_id": embedding_model_id, }, ) resp.raise_for_status() diff --git a/agents-api/agents_api/env.py b/agents-api/agents_api/env.py index b9e339e11..54dee0df3 100644 --- a/agents-api/agents_api/env.py +++ b/agents-api/agents_api/env.py @@ -55,6 +55,10 @@ "EMBEDDING_SERVICE_URL", default="http://0.0.0.0:8082/embed" ) +embedding_model_id: str = env.str( + "EMBEDDING_MODEL_ID", default="BAAI/bge-large-en-v1.5" +) + truncate_embed_text: bool = env.bool("TRUNCATE_EMBED_TEXT", default=False) # Temporal diff --git a/agents-api/agents_api/models/docs/create_docs.py b/agents-api/agents_api/models/docs/create_docs.py index 389b4e5b7..1018b96a1 100644 --- a/agents-api/agents_api/models/docs/create_docs.py +++ b/agents-api/agents_api/models/docs/create_docs.py @@ -1,4 +1,4 @@ -from typing import Callable, Literal +from typing import Literal from uuid import UUID @@ -13,8 +13,7 @@ def create_docs_query( owner_id: UUID, id: UUID, title: str, - content: str, - split_fn: Callable[[str], list[str]] = lambda x: x.split("\n\n"), + content: list[str], metadata: dict = {}, ) -> tuple[str, dict]: """ @@ -26,19 +25,16 @@ def create_docs_query( - id (UUID): The UUID of the document to be created. - title (str): The title of the document. - content (str): The content of the document, which will be split into snippets. - - split_fn (Callable[[str], list[str]]): A function to split the content into snippets. Defaults to splitting by double newlines. - metadata (dict): Metadata associated with the document. Defaults to an empty dictionary. Returns: pd.DataFrame: A DataFrame containing the results of the query execution. """ created_at: float = utcnow().timestamp() - - snippets = split_fn(content) snippet_cols, snippet_rows = "", [] # Process each content snippet and prepare data for the datalog query. - for snippet_idx, snippet in enumerate(snippets): + for snippet_idx, snippet in enumerate(content): snippet_cols, new_snippet_rows = cozo_process_mutate_data( dict( doc_id=str(id), diff --git a/agents-api/agents_api/routers/agents/routers.py b/agents-api/agents_api/routers/agents/routers.py index 50a9c2607..ead076cf6 100644 --- a/agents-api/agents_api/routers/agents/routers.py +++ b/agents-api/agents_api/routers/agents/routers.py @@ -301,12 +301,13 @@ async def list_agents( @router.post("/agents/{agent_id}/docs", tags=["agents"]) async def create_docs(agent_id: UUID4, request: CreateDoc) -> ResourceCreatedResponse: doc_id = uuid4() + content = [request.content] if isinstance(request.content, str) else request.content resp: pd.DataFrame = create_docs_query( owner_type="agent", owner_id=agent_id, id=doc_id, title=request.title, - content=request.content, + content=content, metadata=request.metadata or {}, ) @@ -316,7 +317,7 @@ async def create_docs(agent_id: UUID4, request: CreateDoc) -> ResourceCreatedRes created_at=resp["created_at"][0], ) - indices, snippets = list(zip(*enumerate(request.content.split("\n\n")))) + indices, snippets = list(zip(*enumerate(content))) embeddings = await embed( [ snippet_embed_instruction + request.title + "\n\n" + snippet diff --git a/agents-api/agents_api/routers/users/routers.py b/agents-api/agents_api/routers/users/routers.py index 27f5eb6e0..dc8abe025 100644 --- a/agents-api/agents_api/routers/users/routers.py +++ b/agents-api/agents_api/routers/users/routers.py @@ -238,12 +238,13 @@ async def list_users( @router.post("/users/{user_id}/docs", tags=["users"]) async def create_docs(user_id: UUID4, request: CreateDoc) -> ResourceCreatedResponse: doc_id = uuid4() + content = [request.content] if isinstance(request.content, str) else request.content resp: pd.DataFrame = create_docs_query( owner_type="user", owner_id=user_id, id=doc_id, title=request.title, - content=request.content, + content=content, metadata=request.metadata or {}, ) @@ -253,7 +254,7 @@ async def create_docs(user_id: UUID4, request: CreateDoc) -> ResourceCreatedResp created_at=resp["created_at"][0], ) - indices, snippets = list(zip(*enumerate(request.content.split("\n\n")))) + indices, snippets = list(zip(*enumerate(content))) embeddings = await embed( [ snippet_embed_instruction + request.title + "\n\n" + snippet diff --git a/openapi.yaml b/openapi.yaml index 2fd2a92f8..7f368452c 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -51,7 +51,8 @@ paths: get: summary: List sessions description: >- - List sessions created (use limit/offset pagination to get large number of sessions; sorted by descending order of `created_at` by default) + List sessions created (use limit/offset pagination to get large number + of sessions; sorted by descending order of `created_at` by default) operationId: ListSessions tags: [] parameters: @@ -89,7 +90,8 @@ paths: - in: query name: order description: >- - Which order should the sort be: `asc` (ascending) or `desc` (descending) + Which order should the sort be: `asc` (ascending) or `desc` + (descending) schema: type: string enum: @@ -111,7 +113,8 @@ paths: required: - items description: >- - List of sessions (sorted created_at descending order) with limit+offset pagination + List of sessions (sorted created_at descending order) with + limit+offset pagination security: - api-key: [] /users: @@ -139,7 +142,8 @@ paths: get: summary: List users description: >- - List users created (use limit/offset pagination to get large number of sessions; sorted by descending order of `created_at` by default) + List users created (use limit/offset pagination to get large number of + sessions; sorted by descending order of `created_at` by default) operationId: ListUsers tags: [] parameters: @@ -175,7 +179,8 @@ paths: - in: query name: order description: >- - Which order should the sort be: `asc` (ascending) or `desc` (descending) + Which order should the sort be: `asc` (ascending) or `desc` + (descending) schema: type: string enum: @@ -197,7 +202,8 @@ paths: required: - items description: >- - List of users (sorted created_at descending order) with limit+offset pagination + List of users (sorted created_at descending order) with limit+offset + pagination security: - api-key: [] /agents: @@ -225,7 +231,8 @@ paths: get: summary: List agents description: >- - List agents created (use limit/offset pagination to get large number of sessions; sorted by descending order of `created_at` by default) + List agents created (use limit/offset pagination to get large number of + sessions; sorted by descending order of `created_at` by default) operationId: ListAgents tags: [] parameters: @@ -263,7 +270,8 @@ paths: - in: query name: order description: >- - Which order should the sort be: `asc` (ascending) or `desc` (descending) + Which order should the sort be: `asc` (ascending) or `desc` + (descending) schema: type: string enum: @@ -273,7 +281,8 @@ paths: responses: '200': description: >- - List of agents (sorted created_at descending order) with limit+offset pagination + List of agents (sorted created_at descending order) with + limit+offset pagination content: application/json: schema: @@ -744,7 +753,8 @@ paths: - in: query name: order description: >- - Which order should the sort be: `asc` (ascending) or `desc` (descending) + Which order should the sort be: `asc` (ascending) or `desc` + (descending) schema: type: string enum: @@ -830,7 +840,8 @@ paths: - in: query name: order description: >- - Which order should the sort be: `asc` (ascending) or `desc` (descending) + Which order should the sort be: `asc` (ascending) or `desc` + (descending) schema: type: string enum: @@ -1211,11 +1222,13 @@ components: description: type: string description: >- - A description of what the function does, used by the model to choose when and how to call the function. + A description of what the function does, used by the model to choose + when and how to call the function. name: type: string description: >- - The name of the function to be called. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 64. + The name of the function to be called. Must be a-z, A-Z, 0-9, or + contain underscores and dashes, with a maximum length of 64. parameters: $ref: '#/components/schemas/FunctionParameters' description: Parameters accepeted by this function @@ -1231,7 +1244,8 @@ components: - function - webhook description: >- - Whether this tool is a `function` or a `webhook` (Only `function` tool supported right now) + Whether this tool is a `function` or a `webhook` (Only `function` + tool supported right now) function: oneOf: - $ref: '#/components/schemas/FunctionDef' @@ -1266,7 +1280,8 @@ components: summary: type: string description: >- - (null at the beginning) - generated automatically after every interaction + (null at the beginning) - generated automatically after every + interaction created_at: type: string format: date-time @@ -1350,7 +1365,9 @@ components: items: $ref: '#/components/schemas/CreateToolRequest' description: >- - A list of tools the model may call. Currently, only `function`s are supported as a tool. Use this to provide a list of functions the model may generate JSON inputs for. + A list of tools the model may call. Currently, only `function`s are + supported as a tool. Use this to provide a list of functions the + model may generate JSON inputs for. default_settings: $ref: '#/components/schemas/AgentDefaultSettings' description: Default model settings to start every session with @@ -1546,7 +1563,9 @@ components: type: array nullable: true description: >- - (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 + (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 items: $ref: '#/components/schemas/Tool' tool_choice: @@ -1555,13 +1574,15 @@ components: - $ref: '#/components/schemas/ToolChoiceOption' - $ref: '#/components/schemas/NamedToolChoice' description: >- - Can be one of existing tools given to the agent earlier or the ones included in the request + Can be one of existing tools given to the agent earlier or the ones + included in the request required: - messages NamedToolChoice: type: object description: >- - Specifies a tool the model should use. Use to force the model to call a specific function. + Specifies a tool the model should use. Use to force the model to call a + specific function. properties: type: type: string @@ -1583,20 +1604,24 @@ components: description: > Controls which (if any) function is called by the model. - `none` means the model will not call a function and instead generates a message. + `none` means the model will not call a function and instead generates a + message. - `auto` means the model can pick between generating a message or calling a function. + `auto` means the model can pick between generating a message or calling + a function. - Specifying a particular function via `{"type: "function", "function": {"name": "my_function"}}` forces the model to call that function. + Specifying a particular function via `{"type: "function", "function": + {"name": "my_function"}}` forces the model to call that function. - `none` is the default when no functions are present. `auto` is the default if functions are present. - + `none` is the default when no functions are present. `auto` is the + default if functions are present. oneOf: - type: string description: > - `none` means the model will not call a function and instead generates a message. `auto` means the model can pick between generating a message or calling a function. - + `none` means the model will not call a function and instead + generates a message. `auto` means the model can pick between + generating a message or calling a function. enum: - none - auto @@ -1605,8 +1630,8 @@ components: FunctionCallOption: type: object description: > - Specifying a particular function via `{"name": "my_function"}` forces the model to call that function. - + Specifying a particular function via `{"name": "my_function"}` forces + the model to call that function. properties: name: type: string @@ -1633,7 +1658,8 @@ components: ChatResponse: type: object description: >- - Represents a chat completion response returned by model, based on the provided input. + Represents a chat completion response returned by model, based on the + provided input. properties: id: type: string @@ -1642,7 +1668,12 @@ components: finish_reason: type: string description: >- - The reason the model stopped generating tokens. This will be `stop` if the model hit a natural stop point or a provided stop sequence, `length` if the maximum number of tokens specified in the request was reached, `content_filter` if content was omitted due to a flag from our content filters, `tool_calls` if the model called a tool, or `function_call` (deprecated) if the model called a function. + The reason the model stopped generating tokens. This will be `stop` + if the model hit a natural stop point or a provided stop sequence, + `length` if the maximum number of tokens specified in the request + was reached, `content_filter` if content was omitted due to a flag + from our content filters, `tool_calls` if the model called a tool, + or `function_call` (deprecated) if the model called a function. enum: - stop - length @@ -1734,14 +1765,18 @@ components: maximum: 1 nullable: true description: >- - (OpenAI-like) Number between -2.0 and 2.0. Positive values penalize new tokens based on their existing frequency in the text so far, decreasing the model's likelihood to repeat the same line verbatim. + (OpenAI-like) Number between -2.0 and 2.0. Positive values penalize + new tokens based on their existing frequency in the text so far, + decreasing the model's likelihood to repeat the same line verbatim. length_penalty: type: number default: 1 minimum: 0 maximum: 2 nullable: true - description: "(Huggingface-like) Number between 0 and 2.0. 1.0 is neutral and values larger than that penalize number of tokens generated. " + description: >- + (Huggingface-like) Number between 0 and 2.0. 1.0 is neutral and + values larger than that penalize number of tokens generated. logit_bias: type: object default: null @@ -1749,19 +1784,25 @@ components: additionalProperties: type: integer description: > - Modify the likelihood of specified tokens appearing in the completion. + Modify the likelihood of specified tokens appearing in the + completion. - Accepts a JSON object that maps tokens (specified by their token ID in the tokenizer) to an associated bias value from -100 to 100. Mathematically, the bias is added to the logits generated by the model prior to sampling. The exact effect will vary per model, but values between -1 and 1 should decrease or increase likelihood of selection; values like -100 or 100 should result in a ban or exclusive selection of the relevant token. - + Accepts a JSON object that maps tokens (specified by their token ID + in the tokenizer) to an associated bias value from -100 to 100. + Mathematically, the bias is added to the logits generated by the + model prior to sampling. The exact effect will vary per model, but + values between -1 and 1 should decrease or increase likelihood of + selection; values like -100 or 100 should result in a ban or + exclusive selection of the relevant token. properties: {} max_tokens: description: > The maximum number of tokens to generate in the chat completion. - The total length of input tokens and generated tokens is limited by the model's context length. - + The total length of input tokens and generated tokens is limited by + the model's context length. type: integer nullable: true default: 200 @@ -1774,7 +1815,9 @@ components: maximum: 1 nullable: true description: >- - (OpenAI-like) Number between -2.0 and 2.0. Positive values penalize new tokens based on their existing frequency in the text so far, decreasing the model's likelihood to repeat the same line verbatim. + (OpenAI-like) Number between -2.0 and 2.0. Positive values penalize + new tokens based on their existing frequency in the text so far, + decreasing the model's likelihood to repeat the same line verbatim. repetition_penalty: type: number default: 1 @@ -1782,18 +1825,28 @@ components: maximum: 2 nullable: true description: >- - (Huggingface-like) Number between 0 and 2.0. 1.0 is neutral and values larger than that penalize new tokens based on their existing frequency in the text so far, decreasing the model's likelihood to repeat the same line verbatim. + (Huggingface-like) Number between 0 and 2.0. 1.0 is neutral and + values larger than that penalize new tokens based on their existing + frequency in the text so far, decreasing the model's likelihood to + repeat the same line verbatim. response_format: type: object description: > An object specifying the format that the model must output. - Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the message the model generates is valid JSON. + Setting to `{ "type": "json_object" }` enables JSON mode, which + guarantees the message the model generates is valid JSON. - **Important:** when using JSON mode, you **must** also instruct the model to produce JSON yourself via a system or user message. Without this, the model may generate an unending stream of whitespace until the generation reaches the token limit, resulting in a long-running and seemingly "stuck" request. Also note that the message content may be partially cut off if `finish_reason="length"`, which indicates the generation exceeded `max_tokens` or the conversation exceeded the max context length. - + **Important:** when using JSON mode, you **must** also instruct the + model to produce JSON yourself via a system or user message. Without + this, the model may generate an unending stream of whitespace until + the generation reaches the token limit, resulting in a long-running + and seemingly "stuck" request. Also note that the message content + may be partially cut off if `finish_reason="length"`, which + indicates the generation exceeded `max_tokens` or the conversation + exceeded the max context length. properties: type: type: string @@ -1820,10 +1873,13 @@ components: description: > This feature is in Beta. - If specified, our system will make a best effort to sample deterministically, such that repeated requests with the same `seed` and parameters should return the same result. - - Determinism is not guaranteed, and you should refer to the `system_fingerprint` response parameter to monitor changes in the backend. + If specified, our system will make a best effort to sample + deterministically, such that repeated requests with the same `seed` + and parameters should return the same result. + Determinism is not guaranteed, and you should refer to the + `system_fingerprint` response parameter to monitor changes in the + backend. stop: description: | Up to 4 sequences where the API will stop generating further tokens. @@ -1838,8 +1894,12 @@ components: type: string stream: description: > - If set, partial message deltas will be sent, like in ChatGPT. Tokens will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) as they become available, with the stream terminated by a `data: [DONE]` message. [Example Python code](https://cookbook.openai.com/examples/how_to_stream_completions). - + If set, partial message deltas will be sent, like in ChatGPT. Tokens + will be sent as data-only [server-sent + events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) + as they become available, with the stream terminated by a `data: + [DONE]` message. [Example Python + code](https://cookbook.openai.com/examples/how_to_stream_completions). type: boolean nullable: true default: false @@ -1851,7 +1911,9 @@ components: example: 0.75 nullable: true description: >- - What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. + What sampling temperature to use, between 0 and 2. Higher values + like 0.8 will make the output more random, while lower values like + 0.2 will make it more focused and deterministic. top_p: type: number minimum: 0 @@ -1860,7 +1922,11 @@ components: example: 1 nullable: true description: >- - Defaults to 1 An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass. So 0.1 means only the tokens comprising the top 10% probability mass are considered. We generally recommend altering this or temperature but not both. + Defaults to 1 An alternative to sampling with temperature, called + nucleus sampling, where the model considers the results of the + tokens with top_p probability mass. So 0.1 means only the tokens + comprising the top 10% probability mass are considered. We + generally recommend altering this or temperature but not both. exclusiveMinimum: true min_p: type: number @@ -1874,7 +1940,8 @@ components: preset: type: string description: >- - Generation preset name (problem_solving|conversational|fun|prose|creative|business|deterministic|code|multilingual) + Generation preset name + (problem_solving|conversational|fun|prose|creative|business|deterministic|code|multilingual) enum: - problem_solving - conversational @@ -1895,14 +1962,18 @@ components: maximum: 2 nullable: true description: >- - (OpenAI-like) Number between -2.0 and 2.0. Positive values penalize new tokens based on their existing frequency in the text so far, decreasing the model's likelihood to repeat the same line verbatim. + (OpenAI-like) Number between -2.0 and 2.0. Positive values penalize + new tokens based on their existing frequency in the text so far, + decreasing the model's likelihood to repeat the same line verbatim. length_penalty: type: number default: 1 minimum: 0 maximum: 2 nullable: true - description: "(Huggingface-like) Number between 0 and 2.0. 1.0 is neutral and values larger than that penalize number of tokens generated. " + description: >- + (Huggingface-like) Number between 0 and 2.0. 1.0 is neutral and + values larger than that penalize number of tokens generated. presence_penalty: type: number default: 0 @@ -1910,7 +1981,9 @@ components: maximum: 1 nullable: true description: >- - (OpenAI-like) Number between -2.0 and 2.0. Positive values penalize new tokens based on their existing frequency in the text so far, decreasing the model's likelihood to repeat the same line verbatim. + (OpenAI-like) Number between -2.0 and 2.0. Positive values penalize + new tokens based on their existing frequency in the text so far, + decreasing the model's likelihood to repeat the same line verbatim. repetition_penalty: type: number default: 1 @@ -1918,7 +1991,10 @@ components: maximum: 2 nullable: true description: >- - (Huggingface-like) Number between 0 and 2.0. 1.0 is neutral and values larger than that penalize new tokens based on their existing frequency in the text so far, decreasing the model's likelihood to repeat the same line verbatim. + (Huggingface-like) Number between 0 and 2.0. 1.0 is neutral and + values larger than that penalize new tokens based on their existing + frequency in the text so far, decreasing the model's likelihood to + repeat the same line verbatim. temperature: type: number minimum: 0 @@ -1927,7 +2003,9 @@ components: example: 0.75 nullable: true description: >- - What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. + What sampling temperature to use, between 0 and 2. Higher values + like 0.8 will make the output more random, while lower values like + 0.2 will make it more focused and deterministic. top_p: type: number minimum: 0 @@ -1936,7 +2014,11 @@ components: example: 1 nullable: true description: >- - Defaults to 1 An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass. So 0.1 means only the tokens comprising the top 10% probability mass are considered. We generally recommend altering this or temperature but not both. + Defaults to 1 An alternative to sampling with temperature, called + nucleus sampling, where the model considers the results of the + tokens with top_p probability mass. So 0.1 means only the tokens + comprising the top 10% probability mass are considered. We + generally recommend altering this or temperature but not both. min_p: type: number description: Minimum probability compared to leading token to be considered @@ -1949,7 +2031,8 @@ components: preset: type: string description: >- - Generation preset name (one of: problem_solving, conversational, fun, prose, creative, business, deterministic, code, multilingual) + Generation preset name (one of: problem_solving, conversational, + fun, prose, creative, business, deterministic, code, multilingual) enum: - problem_solving - conversational @@ -1998,7 +2081,14 @@ components: type: string description: Title describing what this bit of information contains content: - type: string + oneOf: + - type: array + description: List of document chunks + items: + type: string + minItems: 1 + - type: string + description: A single document chunk description: Information content metadata: type: object @@ -2007,6 +2097,7 @@ components: required: - title - content + - field_0 MemoryAccessOptions: type: object properties: @@ -2031,7 +2122,8 @@ components: - function - webhook description: >- - Whether this tool is a `function` or a `webhook` (Only `function` tool supported right now) + Whether this tool is a `function` or a `webhook` (Only `function` + tool supported right now) function: oneOf: - $ref: '#/components/schemas/FunctionDef' @@ -2139,7 +2231,8 @@ components: state: type: string description: >- - Current state (one of: pending, in_progress, retrying, succeeded, aborted, failed) + Current state (one of: pending, in_progress, retrying, succeeded, + aborted, failed) enum: - pending - in_progress @@ -2223,11 +2316,13 @@ components: description: type: string description: >- - A description of what the function does, used by the model to choose when and how to call the function. + A description of what the function does, used by the model to choose + when and how to call the function. name: type: string description: >- - The name of the function to be called. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 64. + The name of the function to be called. Must be a-z, A-Z, 0-9, or + contain underscores and dashes, with a maximum length of 64. parameters: $ref: '#/components/schemas/FunctionParameters' description: Parameters accepeted by this function From 1f5078a053d4d43d3f3d1d71003fe8295bd5592a Mon Sep 17 00:00:00 2001 From: whiterabbit1983 Date: Wed, 1 May 2024 05:58:59 +0000 Subject: [PATCH 2/2] doc(sdks/ts): Generate docs for sdks/ts (CI) --- docs/js-sdk-docs/classes/api.ApiError.md | 12 +- .../classes/api.BaseHttpRequest.md | 6 +- docs/js-sdk-docs/classes/api.CancelError.md | 4 +- .../classes/api.CancelablePromise.md | 28 +-- .../js-sdk-docs/classes/api.DefaultService.md | 76 +++---- .../api_JulepApiClient.JulepApiClient.md | 6 +- .../classes/managers_agent.AgentsManager.md | 16 +- .../classes/managers_base.BaseManager.md | 4 +- .../classes/managers_doc.DocsManager.md | 12 +- .../managers_memory.MemoriesManager.md | 6 +- .../managers_session.SessionsManager.md | 22 +- .../classes/managers_tool.ToolsManager.md | 12 +- .../classes/managers_user.UsersManager.md | 16 +- ...ls_requestConstructor.CustomHttpRequest.md | 6 +- .../managers_session.CreateSessionPayload.md | 10 +- docs/js-sdk-docs/modules/api.md | 192 +++++++++--------- docs/js-sdk-docs/modules/utils_invariant.md | 2 +- .../js-sdk-docs/modules/utils_isValidUuid4.md | 2 +- docs/js-sdk-docs/modules/utils_openaiPatch.md | 2 +- docs/js-sdk-docs/modules/utils_xor.md | 2 +- 20 files changed, 218 insertions(+), 218 deletions(-) diff --git a/docs/js-sdk-docs/classes/api.ApiError.md b/docs/js-sdk-docs/classes/api.ApiError.md index 072d1828d..6d54804d4 100644 --- a/docs/js-sdk-docs/classes/api.ApiError.md +++ b/docs/js-sdk-docs/classes/api.ApiError.md @@ -57,7 +57,7 @@ Error.constructor #### Defined in -[src/api/core/ApiError.ts:15](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/core/ApiError.ts#L15) +[src/api/core/ApiError.ts:15](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/core/ApiError.ts#L15) ## Properties @@ -67,7 +67,7 @@ Error.constructor #### Defined in -[src/api/core/ApiError.ts:12](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/core/ApiError.ts#L12) +[src/api/core/ApiError.ts:12](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/core/ApiError.ts#L12) ___ @@ -105,7 +105,7 @@ ___ #### Defined in -[src/api/core/ApiError.ts:13](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/core/ApiError.ts#L13) +[src/api/core/ApiError.ts:13](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/core/ApiError.ts#L13) ___ @@ -129,7 +129,7 @@ ___ #### Defined in -[src/api/core/ApiError.ts:10](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/core/ApiError.ts#L10) +[src/api/core/ApiError.ts:10](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/core/ApiError.ts#L10) ___ @@ -139,7 +139,7 @@ ___ #### Defined in -[src/api/core/ApiError.ts:11](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/core/ApiError.ts#L11) +[src/api/core/ApiError.ts:11](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/core/ApiError.ts#L11) ___ @@ -149,7 +149,7 @@ ___ #### Defined in -[src/api/core/ApiError.ts:9](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/core/ApiError.ts#L9) +[src/api/core/ApiError.ts:9](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/core/ApiError.ts#L9) ___ diff --git a/docs/js-sdk-docs/classes/api.BaseHttpRequest.md b/docs/js-sdk-docs/classes/api.BaseHttpRequest.md index b56d08a15..d7da9bb7d 100644 --- a/docs/js-sdk-docs/classes/api.BaseHttpRequest.md +++ b/docs/js-sdk-docs/classes/api.BaseHttpRequest.md @@ -36,7 +36,7 @@ #### Defined in -[src/api/core/BaseHttpRequest.ts:10](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/core/BaseHttpRequest.ts#L10) +[src/api/core/BaseHttpRequest.ts:10](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/core/BaseHttpRequest.ts#L10) ## Properties @@ -46,7 +46,7 @@ #### Defined in -[src/api/core/BaseHttpRequest.ts:10](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/core/BaseHttpRequest.ts#L10) +[src/api/core/BaseHttpRequest.ts:10](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/core/BaseHttpRequest.ts#L10) ## Methods @@ -72,4 +72,4 @@ #### Defined in -[src/api/core/BaseHttpRequest.ts:12](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/core/BaseHttpRequest.ts#L12) +[src/api/core/BaseHttpRequest.ts:12](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/core/BaseHttpRequest.ts#L12) diff --git a/docs/js-sdk-docs/classes/api.CancelError.md b/docs/js-sdk-docs/classes/api.CancelError.md index 44d6bd492..614b95877 100644 --- a/docs/js-sdk-docs/classes/api.CancelError.md +++ b/docs/js-sdk-docs/classes/api.CancelError.md @@ -54,7 +54,7 @@ Error.constructor #### Defined in -[src/api/core/CancelablePromise.ts:6](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/core/CancelablePromise.ts#L6) +[src/api/core/CancelablePromise.ts:6](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/core/CancelablePromise.ts#L6) ## Properties @@ -159,7 +159,7 @@ node_modules/@types/node/globals.d.ts:30 #### Defined in -[src/api/core/CancelablePromise.ts:11](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/core/CancelablePromise.ts#L11) +[src/api/core/CancelablePromise.ts:11](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/core/CancelablePromise.ts#L11) ## Methods diff --git a/docs/js-sdk-docs/classes/api.CancelablePromise.md b/docs/js-sdk-docs/classes/api.CancelablePromise.md index 2c2ce0f41..cb46c236e 100644 --- a/docs/js-sdk-docs/classes/api.CancelablePromise.md +++ b/docs/js-sdk-docs/classes/api.CancelablePromise.md @@ -66,7 +66,7 @@ #### Defined in -[src/api/core/CancelablePromise.ts:33](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/core/CancelablePromise.ts#L33) +[src/api/core/CancelablePromise.ts:33](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/core/CancelablePromise.ts#L33) ## Properties @@ -76,7 +76,7 @@ #### Defined in -[src/api/core/CancelablePromise.ts:28](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/core/CancelablePromise.ts#L28) +[src/api/core/CancelablePromise.ts:28](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/core/CancelablePromise.ts#L28) ___ @@ -86,7 +86,7 @@ ___ #### Defined in -[src/api/core/CancelablePromise.ts:27](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/core/CancelablePromise.ts#L27) +[src/api/core/CancelablePromise.ts:27](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/core/CancelablePromise.ts#L27) ___ @@ -96,7 +96,7 @@ ___ #### Defined in -[src/api/core/CancelablePromise.ts:26](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/core/CancelablePromise.ts#L26) +[src/api/core/CancelablePromise.ts:26](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/core/CancelablePromise.ts#L26) ___ @@ -106,7 +106,7 @@ ___ #### Defined in -[src/api/core/CancelablePromise.ts:25](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/core/CancelablePromise.ts#L25) +[src/api/core/CancelablePromise.ts:25](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/core/CancelablePromise.ts#L25) ___ @@ -116,7 +116,7 @@ ___ #### Defined in -[src/api/core/CancelablePromise.ts:29](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/core/CancelablePromise.ts#L29) +[src/api/core/CancelablePromise.ts:29](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/core/CancelablePromise.ts#L29) ___ @@ -140,7 +140,7 @@ ___ #### Defined in -[src/api/core/CancelablePromise.ts:31](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/core/CancelablePromise.ts#L31) +[src/api/core/CancelablePromise.ts:31](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/core/CancelablePromise.ts#L31) ___ @@ -164,7 +164,7 @@ ___ #### Defined in -[src/api/core/CancelablePromise.ts:30](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/core/CancelablePromise.ts#L30) +[src/api/core/CancelablePromise.ts:30](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/core/CancelablePromise.ts#L30) ## Accessors @@ -182,7 +182,7 @@ Promise.[toStringTag] #### Defined in -[src/api/core/CancelablePromise.ts:87](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/core/CancelablePromise.ts#L87) +[src/api/core/CancelablePromise.ts:87](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/core/CancelablePromise.ts#L87) ___ @@ -196,7 +196,7 @@ ___ #### Defined in -[src/api/core/CancelablePromise.ts:127](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/core/CancelablePromise.ts#L127) +[src/api/core/CancelablePromise.ts:127](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/core/CancelablePromise.ts#L127) ## Methods @@ -210,7 +210,7 @@ ___ #### Defined in -[src/api/core/CancelablePromise.ts:108](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/core/CancelablePromise.ts#L108) +[src/api/core/CancelablePromise.ts:108](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/core/CancelablePromise.ts#L108) ___ @@ -240,7 +240,7 @@ Promise.catch #### Defined in -[src/api/core/CancelablePromise.ts:98](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/core/CancelablePromise.ts#L98) +[src/api/core/CancelablePromise.ts:98](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/core/CancelablePromise.ts#L98) ___ @@ -264,7 +264,7 @@ Promise.finally #### Defined in -[src/api/core/CancelablePromise.ts:104](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/core/CancelablePromise.ts#L104) +[src/api/core/CancelablePromise.ts:104](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/core/CancelablePromise.ts#L104) ___ @@ -296,4 +296,4 @@ Promise.then #### Defined in -[src/api/core/CancelablePromise.ts:91](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/core/CancelablePromise.ts#L91) +[src/api/core/CancelablePromise.ts:91](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/core/CancelablePromise.ts#L91) diff --git a/docs/js-sdk-docs/classes/api.DefaultService.md b/docs/js-sdk-docs/classes/api.DefaultService.md index e1735cf8a..97f9c5d2f 100644 --- a/docs/js-sdk-docs/classes/api.DefaultService.md +++ b/docs/js-sdk-docs/classes/api.DefaultService.md @@ -71,7 +71,7 @@ #### Defined in -[src/api/services/DefaultService.ts:35](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/services/DefaultService.ts#L35) +[src/api/services/DefaultService.ts:35](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/services/DefaultService.ts#L35) ## Properties @@ -81,7 +81,7 @@ #### Defined in -[src/api/services/DefaultService.ts:35](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/services/DefaultService.ts#L35) +[src/api/services/DefaultService.ts:35](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/services/DefaultService.ts#L35) ## Methods @@ -112,7 +112,7 @@ ApiError #### Defined in -[src/api/services/DefaultService.ts:404](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/services/DefaultService.ts#L404) +[src/api/services/DefaultService.ts:404](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/services/DefaultService.ts#L404) ___ @@ -142,7 +142,7 @@ ApiError #### Defined in -[src/api/services/DefaultService.ts:180](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/services/DefaultService.ts#L180) +[src/api/services/DefaultService.ts:180](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/services/DefaultService.ts#L180) ___ @@ -172,7 +172,7 @@ ApiError #### Defined in -[src/api/services/DefaultService.ts:668](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/services/DefaultService.ts#L668) +[src/api/services/DefaultService.ts:668](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/services/DefaultService.ts#L668) ___ @@ -202,7 +202,7 @@ ApiError #### Defined in -[src/api/services/DefaultService.ts:857](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/services/DefaultService.ts#L857) +[src/api/services/DefaultService.ts:857](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/services/DefaultService.ts#L857) ___ @@ -232,7 +232,7 @@ ApiError #### Defined in -[src/api/services/DefaultService.ts:42](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/services/DefaultService.ts#L42) +[src/api/services/DefaultService.ts:42](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/services/DefaultService.ts#L42) ___ @@ -262,7 +262,7 @@ ApiError #### Defined in -[src/api/services/DefaultService.ts:111](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/services/DefaultService.ts#L111) +[src/api/services/DefaultService.ts:111](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/services/DefaultService.ts#L111) ___ @@ -292,7 +292,7 @@ ApiError #### Defined in -[src/api/services/DefaultService.ts:740](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/services/DefaultService.ts#L740) +[src/api/services/DefaultService.ts:740](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/services/DefaultService.ts#L740) ___ @@ -321,7 +321,7 @@ ApiError #### Defined in -[src/api/services/DefaultService.ts:556](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/services/DefaultService.ts#L556) +[src/api/services/DefaultService.ts:556](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/services/DefaultService.ts#L556) ___ @@ -351,7 +351,7 @@ ApiError #### Defined in -[src/api/services/DefaultService.ts:783](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/services/DefaultService.ts#L783) +[src/api/services/DefaultService.ts:783](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/services/DefaultService.ts#L783) ___ @@ -381,7 +381,7 @@ ApiError #### Defined in -[src/api/services/DefaultService.ts:804](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/services/DefaultService.ts#L804) +[src/api/services/DefaultService.ts:804](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/services/DefaultService.ts#L804) ___ @@ -411,7 +411,7 @@ ApiError #### Defined in -[src/api/services/DefaultService.ts:879](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/services/DefaultService.ts#L879) +[src/api/services/DefaultService.ts:879](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/services/DefaultService.ts#L879) ___ @@ -440,7 +440,7 @@ ApiError #### Defined in -[src/api/services/DefaultService.ts:266](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/services/DefaultService.ts#L266) +[src/api/services/DefaultService.ts:266](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/services/DefaultService.ts#L266) ___ @@ -469,7 +469,7 @@ ApiError #### Defined in -[src/api/services/DefaultService.ts:386](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/services/DefaultService.ts#L386) +[src/api/services/DefaultService.ts:386](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/services/DefaultService.ts#L386) ___ @@ -498,7 +498,7 @@ ApiError #### Defined in -[src/api/services/DefaultService.ts:480](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/services/DefaultService.ts#L480) +[src/api/services/DefaultService.ts:480](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/services/DefaultService.ts#L480) ___ @@ -528,7 +528,7 @@ ApiError #### Defined in -[src/api/services/DefaultService.ts:762](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/services/DefaultService.ts#L762) +[src/api/services/DefaultService.ts:762](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/services/DefaultService.ts#L762) ___ @@ -557,7 +557,7 @@ ApiError #### Defined in -[src/api/services/DefaultService.ts:542](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/services/DefaultService.ts#L542) +[src/api/services/DefaultService.ts:542](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/services/DefaultService.ts#L542) ___ @@ -593,7 +593,7 @@ ApiError #### Defined in -[src/api/services/DefaultService.ts:619](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/services/DefaultService.ts#L619) +[src/api/services/DefaultService.ts:619](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/services/DefaultService.ts#L619) ___ @@ -627,7 +627,7 @@ ApiError #### Defined in -[src/api/services/DefaultService.ts:432](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/services/DefaultService.ts#L432) +[src/api/services/DefaultService.ts:432](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/services/DefaultService.ts#L432) ___ @@ -660,7 +660,7 @@ ApiError #### Defined in -[src/api/services/DefaultService.ts:826](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/services/DefaultService.ts#L826) +[src/api/services/DefaultService.ts:826](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/services/DefaultService.ts#L826) ___ @@ -692,7 +692,7 @@ ApiError #### Defined in -[src/api/services/DefaultService.ts:358](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/services/DefaultService.ts#L358) +[src/api/services/DefaultService.ts:358](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/services/DefaultService.ts#L358) ___ @@ -721,7 +721,7 @@ ApiError #### Defined in -[src/api/services/DefaultService.ts:950](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/services/DefaultService.ts#L950) +[src/api/services/DefaultService.ts:950](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/services/DefaultService.ts#L950) ___ @@ -750,7 +750,7 @@ ApiError #### Defined in -[src/api/services/DefaultService.ts:248](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/services/DefaultService.ts#L248) +[src/api/services/DefaultService.ts:248](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/services/DefaultService.ts#L248) ___ @@ -782,7 +782,7 @@ ApiError #### Defined in -[src/api/services/DefaultService.ts:329](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/services/DefaultService.ts#L329) +[src/api/services/DefaultService.ts:329](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/services/DefaultService.ts#L329) ___ @@ -811,7 +811,7 @@ ApiError #### Defined in -[src/api/services/DefaultService.ts:466](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/services/DefaultService.ts#L466) +[src/api/services/DefaultService.ts:466](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/services/DefaultService.ts#L466) ___ @@ -847,7 +847,7 @@ ApiError #### Defined in -[src/api/services/DefaultService.ts:691](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/services/DefaultService.ts#L691) +[src/api/services/DefaultService.ts:691](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/services/DefaultService.ts#L691) ___ @@ -881,7 +881,7 @@ ApiError #### Defined in -[src/api/services/DefaultService.ts:201](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/services/DefaultService.ts#L201) +[src/api/services/DefaultService.ts:201](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/services/DefaultService.ts#L201) ___ @@ -915,7 +915,7 @@ ApiError #### Defined in -[src/api/services/DefaultService.ts:63](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/services/DefaultService.ts#L63) +[src/api/services/DefaultService.ts:63](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/services/DefaultService.ts#L63) ___ @@ -949,7 +949,7 @@ ApiError #### Defined in -[src/api/services/DefaultService.ts:132](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/services/DefaultService.ts#L132) +[src/api/services/DefaultService.ts:132](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/services/DefaultService.ts#L132) ___ @@ -979,7 +979,7 @@ ApiError #### Defined in -[src/api/services/DefaultService.ts:596](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/services/DefaultService.ts#L596) +[src/api/services/DefaultService.ts:596](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/services/DefaultService.ts#L596) ___ @@ -1010,7 +1010,7 @@ ApiError #### Defined in -[src/api/services/DefaultService.ts:925](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/services/DefaultService.ts#L925) +[src/api/services/DefaultService.ts:925](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/services/DefaultService.ts#L925) ___ @@ -1040,7 +1040,7 @@ ApiError #### Defined in -[src/api/services/DefaultService.ts:306](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/services/DefaultService.ts#L306) +[src/api/services/DefaultService.ts:306](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/services/DefaultService.ts#L306) ___ @@ -1070,7 +1070,7 @@ ApiError #### Defined in -[src/api/services/DefaultService.ts:520](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/services/DefaultService.ts#L520) +[src/api/services/DefaultService.ts:520](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/services/DefaultService.ts#L520) ___ @@ -1100,7 +1100,7 @@ ApiError #### Defined in -[src/api/services/DefaultService.ts:574](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/services/DefaultService.ts#L574) +[src/api/services/DefaultService.ts:574](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/services/DefaultService.ts#L574) ___ @@ -1131,7 +1131,7 @@ ApiError #### Defined in -[src/api/services/DefaultService.ts:900](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/services/DefaultService.ts#L900) +[src/api/services/DefaultService.ts:900](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/services/DefaultService.ts#L900) ___ @@ -1161,7 +1161,7 @@ ApiError #### Defined in -[src/api/services/DefaultService.ts:284](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/services/DefaultService.ts#L284) +[src/api/services/DefaultService.ts:284](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/services/DefaultService.ts#L284) ___ @@ -1191,4 +1191,4 @@ ApiError #### Defined in -[src/api/services/DefaultService.ts:498](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/services/DefaultService.ts#L498) +[src/api/services/DefaultService.ts:498](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/services/DefaultService.ts#L498) diff --git a/docs/js-sdk-docs/classes/api_JulepApiClient.JulepApiClient.md b/docs/js-sdk-docs/classes/api_JulepApiClient.JulepApiClient.md index 7de82d117..e4fe39e80 100644 --- a/docs/js-sdk-docs/classes/api_JulepApiClient.JulepApiClient.md +++ b/docs/js-sdk-docs/classes/api_JulepApiClient.JulepApiClient.md @@ -34,7 +34,7 @@ #### Defined in -[src/api/JulepApiClient.ts:13](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/JulepApiClient.ts#L13) +[src/api/JulepApiClient.ts:13](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/JulepApiClient.ts#L13) ## Properties @@ -44,7 +44,7 @@ #### Defined in -[src/api/JulepApiClient.ts:11](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/JulepApiClient.ts#L11) +[src/api/JulepApiClient.ts:11](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/JulepApiClient.ts#L11) ___ @@ -54,4 +54,4 @@ ___ #### Defined in -[src/api/JulepApiClient.ts:12](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/JulepApiClient.ts#L12) +[src/api/JulepApiClient.ts:12](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/JulepApiClient.ts#L12) diff --git a/docs/js-sdk-docs/classes/managers_agent.AgentsManager.md b/docs/js-sdk-docs/classes/managers_agent.AgentsManager.md index 7b695b3f6..e9710c4b5 100644 --- a/docs/js-sdk-docs/classes/managers_agent.AgentsManager.md +++ b/docs/js-sdk-docs/classes/managers_agent.AgentsManager.md @@ -55,7 +55,7 @@ Constructs a new instance of BaseManager. #### Defined in -[src/managers/base.ts:12](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/base.ts#L12) +[src/managers/base.ts:12](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/base.ts#L12) ## Properties @@ -71,7 +71,7 @@ The JulepApiClient instance used for API interactions. #### Defined in -[src/managers/base.ts:12](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/base.ts#L12) +[src/managers/base.ts:12](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/base.ts#L12) ## Methods @@ -98,7 +98,7 @@ The JulepApiClient instance used for API interactions. #### Defined in -[src/managers/agent.ts:24](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/agent.ts#L24) +[src/managers/agent.ts:24](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/agent.ts#L24) ___ @@ -118,7 +118,7 @@ ___ #### Defined in -[src/managers/agent.ts:85](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/agent.ts#L85) +[src/managers/agent.ts:85](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/agent.ts#L85) ___ @@ -138,7 +138,7 @@ ___ #### Defined in -[src/managers/agent.ts:18](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/agent.ts#L18) +[src/managers/agent.ts:18](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/agent.ts#L18) ___ @@ -161,7 +161,7 @@ ___ #### Defined in -[src/managers/agent.ts:65](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/agent.ts#L65) +[src/managers/agent.ts:65](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/agent.ts#L65) ___ @@ -183,7 +183,7 @@ ___ #### Defined in -[src/managers/agent.ts:92](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/agent.ts#L92) +[src/managers/agent.ts:92](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/agent.ts#L92) ▸ **update**(`agentId`, `request`, `overwrite`): `Promise`\<`Partial`\<[`Agent`](../modules/api.md#agent)\> & \{ `id`: `string` }\> @@ -201,4 +201,4 @@ ___ #### Defined in -[src/managers/agent.ts:98](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/agent.ts#L98) +[src/managers/agent.ts:98](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/agent.ts#L98) diff --git a/docs/js-sdk-docs/classes/managers_base.BaseManager.md b/docs/js-sdk-docs/classes/managers_base.BaseManager.md index 4a03b7bfb..0aa693fce 100644 --- a/docs/js-sdk-docs/classes/managers_base.BaseManager.md +++ b/docs/js-sdk-docs/classes/managers_base.BaseManager.md @@ -53,7 +53,7 @@ Constructs a new instance of BaseManager. #### Defined in -[src/managers/base.ts:12](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/base.ts#L12) +[src/managers/base.ts:12](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/base.ts#L12) ## Properties @@ -65,4 +65,4 @@ The JulepApiClient instance used for API interactions. #### Defined in -[src/managers/base.ts:12](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/base.ts#L12) +[src/managers/base.ts:12](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/base.ts#L12) diff --git a/docs/js-sdk-docs/classes/managers_doc.DocsManager.md b/docs/js-sdk-docs/classes/managers_doc.DocsManager.md index 989aa5dcf..efac15a2f 100644 --- a/docs/js-sdk-docs/classes/managers_doc.DocsManager.md +++ b/docs/js-sdk-docs/classes/managers_doc.DocsManager.md @@ -54,7 +54,7 @@ Constructs a new instance of BaseManager. #### Defined in -[src/managers/base.ts:12](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/base.ts#L12) +[src/managers/base.ts:12](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/base.ts#L12) ## Properties @@ -70,7 +70,7 @@ The JulepApiClient instance used for API interactions. #### Defined in -[src/managers/base.ts:12](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/base.ts#L12) +[src/managers/base.ts:12](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/base.ts#L12) ## Methods @@ -103,7 +103,7 @@ If neither agentId nor userId is provided. #### Defined in -[src/managers/doc.ts:133](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/doc.ts#L133) +[src/managers/doc.ts:133](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/doc.ts#L133) ___ @@ -136,7 +136,7 @@ If neither agentId nor userId is provided. #### Defined in -[src/managers/doc.ts:186](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/doc.ts#L186) +[src/managers/doc.ts:186](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/doc.ts#L186) ___ @@ -170,7 +170,7 @@ If neither agentId nor userId is provided. #### Defined in -[src/managers/doc.ts:22](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/doc.ts#L22) +[src/managers/doc.ts:22](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/doc.ts#L22) ___ @@ -206,4 +206,4 @@ If neither agentId nor userId is provided. #### Defined in -[src/managers/doc.ts:74](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/doc.ts#L74) +[src/managers/doc.ts:74](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/doc.ts#L74) diff --git a/docs/js-sdk-docs/classes/managers_memory.MemoriesManager.md b/docs/js-sdk-docs/classes/managers_memory.MemoriesManager.md index 85a0c80b3..fbb7d5116 100644 --- a/docs/js-sdk-docs/classes/managers_memory.MemoriesManager.md +++ b/docs/js-sdk-docs/classes/managers_memory.MemoriesManager.md @@ -51,7 +51,7 @@ Constructs a new instance of BaseManager. #### Defined in -[src/managers/base.ts:12](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/base.ts#L12) +[src/managers/base.ts:12](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/base.ts#L12) ## Properties @@ -67,7 +67,7 @@ The JulepApiClient instance used for API interactions. #### Defined in -[src/managers/base.ts:12](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/base.ts#L12) +[src/managers/base.ts:12](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/base.ts#L12) ## Methods @@ -96,4 +96,4 @@ A promise that resolves to an array of Memory objects. #### Defined in -[src/managers/memory.ts:21](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/memory.ts#L21) +[src/managers/memory.ts:21](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/memory.ts#L21) diff --git a/docs/js-sdk-docs/classes/managers_session.SessionsManager.md b/docs/js-sdk-docs/classes/managers_session.SessionsManager.md index 69c781ca8..fb3faf596 100644 --- a/docs/js-sdk-docs/classes/managers_session.SessionsManager.md +++ b/docs/js-sdk-docs/classes/managers_session.SessionsManager.md @@ -59,7 +59,7 @@ Constructs a new instance of BaseManager. #### Defined in -[src/managers/base.ts:12](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/base.ts#L12) +[src/managers/base.ts:12](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/base.ts#L12) ## Properties @@ -75,7 +75,7 @@ The JulepApiClient instance used for API interactions. #### Defined in -[src/managers/base.ts:12](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/base.ts#L12) +[src/managers/base.ts:12](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/base.ts#L12) ## Methods @@ -96,7 +96,7 @@ The JulepApiClient instance used for API interactions. #### Defined in -[src/managers/session.ts:104](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/session.ts#L104) +[src/managers/session.ts:104](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/session.ts#L104) ___ @@ -116,7 +116,7 @@ ___ #### Defined in -[src/managers/session.ts:33](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/session.ts#L33) +[src/managers/session.ts:33](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/session.ts#L33) ___ @@ -136,7 +136,7 @@ ___ #### Defined in -[src/managers/session.ts:83](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/session.ts#L83) +[src/managers/session.ts:83](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/session.ts#L83) ___ @@ -156,7 +156,7 @@ ___ #### Defined in -[src/managers/session.ts:188](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/session.ts#L188) +[src/managers/session.ts:188](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/session.ts#L188) ___ @@ -180,7 +180,7 @@ A promise that resolves with the session object. #### Defined in -[src/managers/session.ts:29](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/session.ts#L29) +[src/managers/session.ts:29](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/session.ts#L29) ___ @@ -203,7 +203,7 @@ ___ #### Defined in -[src/managers/session.ts:173](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/session.ts#L173) +[src/managers/session.ts:173](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/session.ts#L173) ___ @@ -226,7 +226,7 @@ ___ #### Defined in -[src/managers/session.ts:63](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/session.ts#L63) +[src/managers/session.ts:63](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/session.ts#L63) ___ @@ -249,7 +249,7 @@ ___ #### Defined in -[src/managers/session.ts:158](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/session.ts#L158) +[src/managers/session.ts:158](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/session.ts#L158) ___ @@ -273,4 +273,4 @@ ___ #### Defined in -[src/managers/session.ts:89](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/session.ts#L89) +[src/managers/session.ts:89](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/session.ts#L89) diff --git a/docs/js-sdk-docs/classes/managers_tool.ToolsManager.md b/docs/js-sdk-docs/classes/managers_tool.ToolsManager.md index 0406617cc..fb58758d9 100644 --- a/docs/js-sdk-docs/classes/managers_tool.ToolsManager.md +++ b/docs/js-sdk-docs/classes/managers_tool.ToolsManager.md @@ -54,7 +54,7 @@ Constructs a new instance of BaseManager. #### Defined in -[src/managers/base.ts:12](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/base.ts#L12) +[src/managers/base.ts:12](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/base.ts#L12) ## Properties @@ -70,7 +70,7 @@ The JulepApiClient instance used for API interactions. #### Defined in -[src/managers/base.ts:12](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/base.ts#L12) +[src/managers/base.ts:12](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/base.ts#L12) ## Methods @@ -94,7 +94,7 @@ The JulepApiClient instance used for API interactions. #### Defined in -[src/managers/tool.ts:32](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/tool.ts#L32) +[src/managers/tool.ts:32](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/tool.ts#L32) ___ @@ -116,7 +116,7 @@ ___ #### Defined in -[src/managers/tool.ts:86](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/tool.ts#L86) +[src/managers/tool.ts:86](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/tool.ts#L86) ___ @@ -139,7 +139,7 @@ ___ #### Defined in -[src/managers/tool.ts:12](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/tool.ts#L12) +[src/managers/tool.ts:12](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/tool.ts#L12) ___ @@ -163,4 +163,4 @@ ___ #### Defined in -[src/managers/tool.ts:54](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/tool.ts#L54) +[src/managers/tool.ts:54](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/tool.ts#L54) diff --git a/docs/js-sdk-docs/classes/managers_user.UsersManager.md b/docs/js-sdk-docs/classes/managers_user.UsersManager.md index 87d830505..39f85e296 100644 --- a/docs/js-sdk-docs/classes/managers_user.UsersManager.md +++ b/docs/js-sdk-docs/classes/managers_user.UsersManager.md @@ -55,7 +55,7 @@ Constructs a new instance of BaseManager. #### Defined in -[src/managers/base.ts:12](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/base.ts#L12) +[src/managers/base.ts:12](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/base.ts#L12) ## Properties @@ -71,7 +71,7 @@ The JulepApiClient instance used for API interactions. #### Defined in -[src/managers/base.ts:12](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/base.ts#L12) +[src/managers/base.ts:12](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/base.ts#L12) ## Methods @@ -91,7 +91,7 @@ The JulepApiClient instance used for API interactions. #### Defined in -[src/managers/user.ts:27](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/user.ts#L27) +[src/managers/user.ts:27](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/user.ts#L27) ___ @@ -111,7 +111,7 @@ ___ #### Defined in -[src/managers/user.ts:63](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/user.ts#L63) +[src/managers/user.ts:63](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/user.ts#L63) ___ @@ -131,7 +131,7 @@ ___ #### Defined in -[src/managers/user.ts:15](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/user.ts#L15) +[src/managers/user.ts:15](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/user.ts#L15) ___ @@ -154,7 +154,7 @@ ___ #### Defined in -[src/managers/user.ts:44](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/user.ts#L44) +[src/managers/user.ts:44](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/user.ts#L44) ___ @@ -176,7 +176,7 @@ ___ #### Defined in -[src/managers/user.ts:73](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/user.ts#L73) +[src/managers/user.ts:73](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/user.ts#L73) ▸ **update**(`userId`, `request`, `overwrite?`): `Promise`\<[`User`](../modules/api.md#user)\> @@ -194,4 +194,4 @@ ___ #### Defined in -[src/managers/user.ts:79](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/user.ts#L79) +[src/managers/user.ts:79](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/user.ts#L79) diff --git a/docs/js-sdk-docs/classes/utils_requestConstructor.CustomHttpRequest.md b/docs/js-sdk-docs/classes/utils_requestConstructor.CustomHttpRequest.md index 554db5c5e..a67345b20 100644 --- a/docs/js-sdk-docs/classes/utils_requestConstructor.CustomHttpRequest.md +++ b/docs/js-sdk-docs/classes/utils_requestConstructor.CustomHttpRequest.md @@ -46,7 +46,7 @@ AxiosHttpRequest.constructor #### Defined in -[src/utils/requestConstructor.ts:16](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/utils/requestConstructor.ts#L16) +[src/utils/requestConstructor.ts:16](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/utils/requestConstructor.ts#L16) ## Properties @@ -60,7 +60,7 @@ AxiosHttpRequest.config #### Defined in -[src/api/core/BaseHttpRequest.ts:10](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/core/BaseHttpRequest.ts#L10) +[src/api/core/BaseHttpRequest.ts:10](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/core/BaseHttpRequest.ts#L10) ## Methods @@ -90,4 +90,4 @@ AxiosHttpRequest.request #### Defined in -[src/utils/requestConstructor.ts:21](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/utils/requestConstructor.ts#L21) +[src/utils/requestConstructor.ts:21](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/utils/requestConstructor.ts#L21) diff --git a/docs/js-sdk-docs/interfaces/managers_session.CreateSessionPayload.md b/docs/js-sdk-docs/interfaces/managers_session.CreateSessionPayload.md index 021161b0f..44155d57a 100644 --- a/docs/js-sdk-docs/interfaces/managers_session.CreateSessionPayload.md +++ b/docs/js-sdk-docs/interfaces/managers_session.CreateSessionPayload.md @@ -22,7 +22,7 @@ #### Defined in -[src/managers/session.ts:17](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/session.ts#L17) +[src/managers/session.ts:17](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/session.ts#L17) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[src/managers/session.ts:19](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/session.ts#L19) +[src/managers/session.ts:19](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/session.ts#L19) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[src/managers/session.ts:20](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/session.ts#L20) +[src/managers/session.ts:20](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/session.ts#L20) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/managers/session.ts:18](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/session.ts#L18) +[src/managers/session.ts:18](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/session.ts#L18) ___ @@ -62,4 +62,4 @@ ___ #### Defined in -[src/managers/session.ts:16](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/managers/session.ts#L16) +[src/managers/session.ts:16](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/managers/session.ts#L16) diff --git a/docs/js-sdk-docs/modules/api.md b/docs/js-sdk-docs/modules/api.md index 1ef586aa1..0e6ea4b8c 100644 --- a/docs/js-sdk-docs/modules/api.md +++ b/docs/js-sdk-docs/modules/api.md @@ -146,7 +146,7 @@ Re-exports [JulepApiClient](../classes/api_JulepApiClient.JulepApiClient.md) #### Defined in -[src/api/models/Agent.ts:6](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/Agent.ts#L6) +[src/api/models/Agent.ts:6](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/Agent.ts#L6) ___ @@ -169,7 +169,7 @@ ___ #### Defined in -[src/api/models/AgentDefaultSettings.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/AgentDefaultSettings.ts#L5) +[src/api/models/AgentDefaultSettings.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/AgentDefaultSettings.ts#L5) ___ @@ -179,7 +179,7 @@ ___ #### Defined in -[src/api/models/ChatInput.ts:8](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/ChatInput.ts#L8) +[src/api/models/ChatInput.ts:8](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/ChatInput.ts#L8) ___ @@ -197,7 +197,7 @@ ___ #### Defined in -[src/api/models/ChatInputData.ts:9](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/ChatInputData.ts#L9) +[src/api/models/ChatInputData.ts:9](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/ChatInputData.ts#L9) ___ @@ -217,7 +217,7 @@ ___ #### Defined in -[src/api/models/ChatMLMessage.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/ChatMLMessage.ts#L5) +[src/api/models/ChatMLMessage.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/ChatMLMessage.ts#L5) ___ @@ -239,7 +239,7 @@ Represents a chat completion response returned by model, based on the provided i #### Defined in -[src/api/models/ChatResponse.ts:10](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/ChatResponse.ts#L10) +[src/api/models/ChatResponse.ts:10](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/ChatResponse.ts#L10) ___ @@ -271,7 +271,7 @@ ___ #### Defined in -[src/api/models/ChatSettings.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/ChatSettings.ts#L5) +[src/api/models/ChatSettings.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/ChatSettings.ts#L5) ___ @@ -291,7 +291,7 @@ Usage statistics for the completion request. #### Defined in -[src/api/models/CompletionUsage.ts:8](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/CompletionUsage.ts#L8) +[src/api/models/CompletionUsage.ts:8](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/CompletionUsage.ts#L8) ___ @@ -316,7 +316,7 @@ A valid request payload for creating an agent #### Defined in -[src/api/models/CreateAgentRequest.ts:11](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/CreateAgentRequest.ts#L11) +[src/api/models/CreateAgentRequest.ts:11](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/CreateAgentRequest.ts#L11) ___ @@ -334,7 +334,7 @@ ___ #### Defined in -[src/api/models/CreateDoc.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/CreateDoc.ts#L5) +[src/api/models/CreateDoc.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/CreateDoc.ts#L5) ___ @@ -356,7 +356,7 @@ A valid request payload for creating a session #### Defined in -[src/api/models/CreateSessionRequest.ts:8](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/CreateSessionRequest.ts#L8) +[src/api/models/CreateSessionRequest.ts:8](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/CreateSessionRequest.ts#L8) ___ @@ -373,7 +373,7 @@ ___ #### Defined in -[src/api/models/CreateToolRequest.ts:6](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/CreateToolRequest.ts#L6) +[src/api/models/CreateToolRequest.ts:6](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/CreateToolRequest.ts#L6) ___ @@ -394,7 +394,7 @@ A valid request payload for creating a user #### Defined in -[src/api/models/CreateUserRequest.ts:9](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/CreateUserRequest.ts#L9) +[src/api/models/CreateUserRequest.ts:9](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/CreateUserRequest.ts#L9) ___ @@ -414,7 +414,7 @@ ___ #### Defined in -[src/api/models/Doc.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/Doc.ts#L5) +[src/api/models/Doc.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/Doc.ts#L5) ___ @@ -432,7 +432,7 @@ Specifying a particular function via `{"name": "my_function"}` forces the model #### Defined in -[src/api/models/FunctionCallOption.ts:9](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/FunctionCallOption.ts#L9) +[src/api/models/FunctionCallOption.ts:9](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/FunctionCallOption.ts#L9) ___ @@ -450,7 +450,7 @@ ___ #### Defined in -[src/api/models/FunctionDef.ts:6](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/FunctionDef.ts#L6) +[src/api/models/FunctionDef.ts:6](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/FunctionDef.ts#L6) ___ @@ -462,7 +462,7 @@ The parameters the functions accepts, described as a JSON Schema object. #### Defined in -[src/api/models/FunctionParameters.ts:8](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/FunctionParameters.ts#L8) +[src/api/models/FunctionParameters.ts:8](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/FunctionParameters.ts#L8) ___ @@ -481,7 +481,7 @@ ___ #### Defined in -[src/api/models/InputChatMLMessage.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/InputChatMLMessage.ts#L5) +[src/api/models/InputChatMLMessage.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/InputChatMLMessage.ts#L5) ___ @@ -504,7 +504,7 @@ ___ #### Defined in -[src/api/models/JobStatus.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/JobStatus.ts#L5) +[src/api/models/JobStatus.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/JobStatus.ts#L5) ___ @@ -528,7 +528,7 @@ ___ #### Defined in -[src/api/models/Memory.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/Memory.ts#L5) +[src/api/models/Memory.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/Memory.ts#L5) ___ @@ -546,7 +546,7 @@ ___ #### Defined in -[src/api/models/MemoryAccessOptions.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/MemoryAccessOptions.ts#L5) +[src/api/models/MemoryAccessOptions.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/MemoryAccessOptions.ts#L5) ___ @@ -566,7 +566,7 @@ Specifies a tool the model should use. Use to force the model to call a specific #### Defined in -[src/api/models/NamedToolChoice.ts:8](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/NamedToolChoice.ts#L8) +[src/api/models/NamedToolChoice.ts:8](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/NamedToolChoice.ts#L8) ___ @@ -590,7 +590,7 @@ ___ #### Defined in -[src/api/core/OpenAPI.ts:10](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/core/OpenAPI.ts#L10) +[src/api/core/OpenAPI.ts:10](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/core/OpenAPI.ts#L10) ___ @@ -608,7 +608,7 @@ ___ #### Defined in -[src/api/models/PartialFunctionDef.ts:6](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/PartialFunctionDef.ts#L6) +[src/api/models/PartialFunctionDef.ts:6](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/PartialFunctionDef.ts#L6) ___ @@ -631,7 +631,7 @@ A request for patching an agent #### Defined in -[src/api/models/PatchAgentRequest.ts:9](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/PatchAgentRequest.ts#L9) +[src/api/models/PatchAgentRequest.ts:9](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/PatchAgentRequest.ts#L9) ___ @@ -650,7 +650,7 @@ A request for patching a session #### Defined in -[src/api/models/PatchSessionRequest.ts:8](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/PatchSessionRequest.ts#L8) +[src/api/models/PatchSessionRequest.ts:8](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/PatchSessionRequest.ts#L8) ___ @@ -666,7 +666,7 @@ ___ #### Defined in -[src/api/models/PatchToolRequest.ts:6](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/PatchToolRequest.ts#L6) +[src/api/models/PatchToolRequest.ts:6](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/PatchToolRequest.ts#L6) ___ @@ -686,7 +686,7 @@ A request for patching a user #### Defined in -[src/api/models/PatchUserRequest.ts:8](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/PatchUserRequest.ts#L8) +[src/api/models/PatchUserRequest.ts:8](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/PatchUserRequest.ts#L8) ___ @@ -704,7 +704,7 @@ ___ #### Defined in -[src/api/models/ResourceCreatedResponse.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/ResourceCreatedResponse.ts#L5) +[src/api/models/ResourceCreatedResponse.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/ResourceCreatedResponse.ts#L5) ___ @@ -722,7 +722,7 @@ ___ #### Defined in -[src/api/models/ResourceDeletedResponse.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/ResourceDeletedResponse.ts#L5) +[src/api/models/ResourceDeletedResponse.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/ResourceDeletedResponse.ts#L5) ___ @@ -740,7 +740,7 @@ ___ #### Defined in -[src/api/models/ResourceUpdatedResponse.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/ResourceUpdatedResponse.ts#L5) +[src/api/models/ResourceUpdatedResponse.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/ResourceUpdatedResponse.ts#L5) ___ @@ -764,7 +764,7 @@ ___ #### Defined in -[src/api/models/Session.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/Session.ts#L5) +[src/api/models/Session.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/Session.ts#L5) ___ @@ -784,7 +784,7 @@ ___ #### Defined in -[src/api/models/Suggestion.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/Suggestion.ts#L5) +[src/api/models/Suggestion.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/Suggestion.ts#L5) ___ @@ -802,7 +802,7 @@ ___ #### Defined in -[src/api/models/Tool.ts:6](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/Tool.ts#L6) +[src/api/models/Tool.ts:6](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/Tool.ts#L6) ___ @@ -819,7 +819,7 @@ Specifying a particular function via `{"type: "function", "function": {"name": " #### Defined in -[src/api/models/ToolChoiceOption.ts:15](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/ToolChoiceOption.ts#L15) +[src/api/models/ToolChoiceOption.ts:15](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/ToolChoiceOption.ts#L15) ___ @@ -842,7 +842,7 @@ A valid request payload for updating an agent #### Defined in -[src/api/models/UpdateAgentRequest.ts:9](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/UpdateAgentRequest.ts#L9) +[src/api/models/UpdateAgentRequest.ts:9](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/UpdateAgentRequest.ts#L9) ___ @@ -861,7 +861,7 @@ A valid request payload for updating a session #### Defined in -[src/api/models/UpdateSessionRequest.ts:8](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/UpdateSessionRequest.ts#L8) +[src/api/models/UpdateSessionRequest.ts:8](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/UpdateSessionRequest.ts#L8) ___ @@ -877,7 +877,7 @@ ___ #### Defined in -[src/api/models/UpdateToolRequest.ts:6](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/UpdateToolRequest.ts#L6) +[src/api/models/UpdateToolRequest.ts:6](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/UpdateToolRequest.ts#L6) ___ @@ -897,7 +897,7 @@ A valid request payload for updating a user #### Defined in -[src/api/models/UpdateUserRequest.ts:8](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/UpdateUserRequest.ts#L8) +[src/api/models/UpdateUserRequest.ts:8](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/UpdateUserRequest.ts#L8) ___ @@ -918,7 +918,7 @@ ___ #### Defined in -[src/api/models/User.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/User.ts#L5) +[src/api/models/User.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/User.ts#L5) ___ @@ -928,7 +928,7 @@ ___ #### Defined in -[src/api/models/agent_id.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/agent_id.ts#L5) +[src/api/models/agent_id.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/agent_id.ts#L5) ___ @@ -938,7 +938,7 @@ ___ #### Defined in -[src/api/models/doc_id.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/doc_id.ts#L5) +[src/api/models/doc_id.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/doc_id.ts#L5) ___ @@ -948,7 +948,7 @@ ___ #### Defined in -[src/api/models/job_id.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/job_id.ts#L5) +[src/api/models/job_id.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/job_id.ts#L5) ___ @@ -958,7 +958,7 @@ ___ #### Defined in -[src/api/models/memory_id.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/memory_id.ts#L5) +[src/api/models/memory_id.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/memory_id.ts#L5) ___ @@ -968,7 +968,7 @@ ___ #### Defined in -[src/api/models/message_id.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/message_id.ts#L5) +[src/api/models/message_id.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/message_id.ts#L5) ___ @@ -978,7 +978,7 @@ ___ #### Defined in -[src/api/models/session_id.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/session_id.ts#L5) +[src/api/models/session_id.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/session_id.ts#L5) ___ @@ -988,7 +988,7 @@ ___ #### Defined in -[src/api/models/tool_id.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/tool_id.ts#L5) +[src/api/models/tool_id.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/tool_id.ts#L5) ___ @@ -998,7 +998,7 @@ ___ #### Defined in -[src/api/models/user_id.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/models/user_id.ts#L5) +[src/api/models/user_id.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/models/user_id.ts#L5) ## Variables @@ -1048,7 +1048,7 @@ ___ #### Defined in -[src/api/schemas/$Agent.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$Agent.ts#L5) +[src/api/schemas/$Agent.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$Agent.ts#L5) ___ @@ -1103,7 +1103,7 @@ ___ #### Defined in -[src/api/schemas/$AgentDefaultSettings.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$AgentDefaultSettings.ts#L5) +[src/api/schemas/$AgentDefaultSettings.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$AgentDefaultSettings.ts#L5) ___ @@ -1120,7 +1120,7 @@ ___ #### Defined in -[src/api/schemas/$ChatInput.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$ChatInput.ts#L5) +[src/api/schemas/$ChatInput.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$ChatInput.ts#L5) ___ @@ -1151,7 +1151,7 @@ ___ #### Defined in -[src/api/schemas/$ChatInputData.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$ChatInputData.ts#L5) +[src/api/schemas/$ChatInputData.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$ChatInputData.ts#L5) ___ @@ -1187,7 +1187,7 @@ ___ #### Defined in -[src/api/schemas/$ChatMLMessage.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$ChatMLMessage.ts#L5) +[src/api/schemas/$ChatMLMessage.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$ChatMLMessage.ts#L5) ___ @@ -1227,7 +1227,7 @@ ___ #### Defined in -[src/api/schemas/$ChatResponse.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$ChatResponse.ts#L5) +[src/api/schemas/$ChatResponse.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$ChatResponse.ts#L5) ___ @@ -1319,7 +1319,7 @@ ___ #### Defined in -[src/api/schemas/$ChatSettings.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$ChatSettings.ts#L5) +[src/api/schemas/$ChatSettings.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$ChatSettings.ts#L5) ___ @@ -1348,7 +1348,7 @@ ___ #### Defined in -[src/api/schemas/$CompletionUsage.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$CompletionUsage.ts#L5) +[src/api/schemas/$CompletionUsage.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$CompletionUsage.ts#L5) ___ @@ -1393,7 +1393,7 @@ ___ #### Defined in -[src/api/schemas/$CreateAgentRequest.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$CreateAgentRequest.ts#L5) +[src/api/schemas/$CreateAgentRequest.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$CreateAgentRequest.ts#L5) ___ @@ -1420,7 +1420,7 @@ ___ #### Defined in -[src/api/schemas/$CreateDoc.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$CreateDoc.ts#L5) +[src/api/schemas/$CreateDoc.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$CreateDoc.ts#L5) ___ @@ -1455,7 +1455,7 @@ ___ #### Defined in -[src/api/schemas/$CreateSessionRequest.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$CreateSessionRequest.ts#L5) +[src/api/schemas/$CreateSessionRequest.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$CreateSessionRequest.ts#L5) ___ @@ -1479,7 +1479,7 @@ ___ #### Defined in -[src/api/schemas/$CreateToolRequest.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$CreateToolRequest.ts#L5) +[src/api/schemas/$CreateToolRequest.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$CreateToolRequest.ts#L5) ___ @@ -1509,7 +1509,7 @@ ___ #### Defined in -[src/api/schemas/$CreateUserRequest.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$CreateUserRequest.ts#L5) +[src/api/schemas/$CreateUserRequest.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$CreateUserRequest.ts#L5) ___ @@ -1546,7 +1546,7 @@ ___ #### Defined in -[src/api/schemas/$Doc.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$Doc.ts#L5) +[src/api/schemas/$Doc.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$Doc.ts#L5) ___ @@ -1567,7 +1567,7 @@ ___ #### Defined in -[src/api/schemas/$FunctionCallOption.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$FunctionCallOption.ts#L5) +[src/api/schemas/$FunctionCallOption.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$FunctionCallOption.ts#L5) ___ @@ -1594,7 +1594,7 @@ ___ #### Defined in -[src/api/schemas/$FunctionDef.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$FunctionDef.ts#L5) +[src/api/schemas/$FunctionDef.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$FunctionDef.ts#L5) ___ @@ -1612,7 +1612,7 @@ ___ #### Defined in -[src/api/schemas/$FunctionParameters.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$FunctionParameters.ts#L5) +[src/api/schemas/$FunctionParameters.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$FunctionParameters.ts#L5) ___ @@ -1641,7 +1641,7 @@ ___ #### Defined in -[src/api/schemas/$InputChatMLMessage.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$InputChatMLMessage.ts#L5) +[src/api/schemas/$InputChatMLMessage.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$InputChatMLMessage.ts#L5) ___ @@ -1688,7 +1688,7 @@ ___ #### Defined in -[src/api/schemas/$JobStatus.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$JobStatus.ts#L5) +[src/api/schemas/$JobStatus.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$JobStatus.ts#L5) ___ @@ -1746,7 +1746,7 @@ ___ #### Defined in -[src/api/schemas/$Memory.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$Memory.ts#L5) +[src/api/schemas/$Memory.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$Memory.ts#L5) ___ @@ -1771,7 +1771,7 @@ ___ #### Defined in -[src/api/schemas/$MemoryAccessOptions.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$MemoryAccessOptions.ts#L5) +[src/api/schemas/$MemoryAccessOptions.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$MemoryAccessOptions.ts#L5) ___ @@ -1798,7 +1798,7 @@ ___ #### Defined in -[src/api/schemas/$NamedToolChoice.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$NamedToolChoice.ts#L5) +[src/api/schemas/$NamedToolChoice.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$NamedToolChoice.ts#L5) ___ @@ -1823,7 +1823,7 @@ ___ #### Defined in -[src/api/schemas/$PartialFunctionDef.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$PartialFunctionDef.ts#L5) +[src/api/schemas/$PartialFunctionDef.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$PartialFunctionDef.ts#L5) ___ @@ -1859,7 +1859,7 @@ ___ #### Defined in -[src/api/schemas/$PatchAgentRequest.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$PatchAgentRequest.ts#L5) +[src/api/schemas/$PatchAgentRequest.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$PatchAgentRequest.ts#L5) ___ @@ -1882,7 +1882,7 @@ ___ #### Defined in -[src/api/schemas/$PatchSessionRequest.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$PatchSessionRequest.ts#L5) +[src/api/schemas/$PatchSessionRequest.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$PatchSessionRequest.ts#L5) ___ @@ -1902,7 +1902,7 @@ ___ #### Defined in -[src/api/schemas/$PatchToolRequest.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$PatchToolRequest.ts#L5) +[src/api/schemas/$PatchToolRequest.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$PatchToolRequest.ts#L5) ___ @@ -1928,7 +1928,7 @@ ___ #### Defined in -[src/api/schemas/$PatchUserRequest.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$PatchUserRequest.ts#L5) +[src/api/schemas/$PatchUserRequest.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$PatchUserRequest.ts#L5) ___ @@ -1957,7 +1957,7 @@ ___ #### Defined in -[src/api/schemas/$ResourceCreatedResponse.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$ResourceCreatedResponse.ts#L5) +[src/api/schemas/$ResourceCreatedResponse.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$ResourceCreatedResponse.ts#L5) ___ @@ -1986,7 +1986,7 @@ ___ #### Defined in -[src/api/schemas/$ResourceDeletedResponse.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$ResourceDeletedResponse.ts#L5) +[src/api/schemas/$ResourceDeletedResponse.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$ResourceDeletedResponse.ts#L5) ___ @@ -2015,7 +2015,7 @@ ___ #### Defined in -[src/api/schemas/$ResourceUpdatedResponse.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$ResourceUpdatedResponse.ts#L5) +[src/api/schemas/$ResourceUpdatedResponse.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$ResourceUpdatedResponse.ts#L5) ___ @@ -2065,7 +2065,7 @@ ___ #### Defined in -[src/api/schemas/$Session.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$Session.ts#L5) +[src/api/schemas/$Session.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$Session.ts#L5) ___ @@ -2102,7 +2102,7 @@ ___ #### Defined in -[src/api/schemas/$Suggestion.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$Suggestion.ts#L5) +[src/api/schemas/$Suggestion.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$Suggestion.ts#L5) ___ @@ -2131,7 +2131,7 @@ ___ #### Defined in -[src/api/schemas/$Tool.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$Tool.ts#L5) +[src/api/schemas/$Tool.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$Tool.ts#L5) ___ @@ -2149,7 +2149,7 @@ ___ #### Defined in -[src/api/schemas/$ToolChoiceOption.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$ToolChoiceOption.ts#L5) +[src/api/schemas/$ToolChoiceOption.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$ToolChoiceOption.ts#L5) ___ @@ -2187,7 +2187,7 @@ ___ #### Defined in -[src/api/schemas/$UpdateAgentRequest.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$UpdateAgentRequest.ts#L5) +[src/api/schemas/$UpdateAgentRequest.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$UpdateAgentRequest.ts#L5) ___ @@ -2211,7 +2211,7 @@ ___ #### Defined in -[src/api/schemas/$UpdateSessionRequest.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$UpdateSessionRequest.ts#L5) +[src/api/schemas/$UpdateSessionRequest.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$UpdateSessionRequest.ts#L5) ___ @@ -2231,7 +2231,7 @@ ___ #### Defined in -[src/api/schemas/$UpdateToolRequest.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$UpdateToolRequest.ts#L5) +[src/api/schemas/$UpdateToolRequest.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$UpdateToolRequest.ts#L5) ___ @@ -2259,7 +2259,7 @@ ___ #### Defined in -[src/api/schemas/$UpdateUserRequest.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$UpdateUserRequest.ts#L5) +[src/api/schemas/$UpdateUserRequest.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$UpdateUserRequest.ts#L5) ___ @@ -2297,7 +2297,7 @@ ___ #### Defined in -[src/api/schemas/$User.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$User.ts#L5) +[src/api/schemas/$User.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$User.ts#L5) ___ @@ -2314,7 +2314,7 @@ ___ #### Defined in -[src/api/schemas/$agent_id.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$agent_id.ts#L5) +[src/api/schemas/$agent_id.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$agent_id.ts#L5) ___ @@ -2331,7 +2331,7 @@ ___ #### Defined in -[src/api/schemas/$doc_id.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$doc_id.ts#L5) +[src/api/schemas/$doc_id.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$doc_id.ts#L5) ___ @@ -2348,7 +2348,7 @@ ___ #### Defined in -[src/api/schemas/$job_id.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$job_id.ts#L5) +[src/api/schemas/$job_id.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$job_id.ts#L5) ___ @@ -2365,7 +2365,7 @@ ___ #### Defined in -[src/api/schemas/$memory_id.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$memory_id.ts#L5) +[src/api/schemas/$memory_id.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$memory_id.ts#L5) ___ @@ -2382,7 +2382,7 @@ ___ #### Defined in -[src/api/schemas/$message_id.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$message_id.ts#L5) +[src/api/schemas/$message_id.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$message_id.ts#L5) ___ @@ -2399,7 +2399,7 @@ ___ #### Defined in -[src/api/schemas/$session_id.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$session_id.ts#L5) +[src/api/schemas/$session_id.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$session_id.ts#L5) ___ @@ -2416,7 +2416,7 @@ ___ #### Defined in -[src/api/schemas/$tool_id.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$tool_id.ts#L5) +[src/api/schemas/$tool_id.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$tool_id.ts#L5) ___ @@ -2433,7 +2433,7 @@ ___ #### Defined in -[src/api/schemas/$user_id.ts:5](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/schemas/$user_id.ts#L5) +[src/api/schemas/$user_id.ts:5](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/schemas/$user_id.ts#L5) ___ @@ -2443,4 +2443,4 @@ ___ #### Defined in -[src/api/core/OpenAPI.ts:22](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/api/core/OpenAPI.ts#L22) +[src/api/core/OpenAPI.ts:22](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/api/core/OpenAPI.ts#L22) diff --git a/docs/js-sdk-docs/modules/utils_invariant.md b/docs/js-sdk-docs/modules/utils_invariant.md index 21870a789..d47bff3f7 100644 --- a/docs/js-sdk-docs/modules/utils_invariant.md +++ b/docs/js-sdk-docs/modules/utils_invariant.md @@ -29,4 +29,4 @@ Ensures that a condition is met, throwing a custom error message if not. #### Defined in -[src/utils/invariant.ts:6](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/utils/invariant.ts#L6) +[src/utils/invariant.ts:6](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/utils/invariant.ts#L6) diff --git a/docs/js-sdk-docs/modules/utils_isValidUuid4.md b/docs/js-sdk-docs/modules/utils_isValidUuid4.md index 5e67d1f5c..eeeb318ed 100644 --- a/docs/js-sdk-docs/modules/utils_isValidUuid4.md +++ b/docs/js-sdk-docs/modules/utils_isValidUuid4.md @@ -33,4 +33,4 @@ True if the input is a valid UUID v4, otherwise false. #### Defined in -[src/utils/isValidUuid4.ts:11](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/utils/isValidUuid4.ts#L11) +[src/utils/isValidUuid4.ts:11](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/utils/isValidUuid4.ts#L11) diff --git a/docs/js-sdk-docs/modules/utils_openaiPatch.md b/docs/js-sdk-docs/modules/utils_openaiPatch.md index 0071e204d..ce6bffa6c 100644 --- a/docs/js-sdk-docs/modules/utils_openaiPatch.md +++ b/docs/js-sdk-docs/modules/utils_openaiPatch.md @@ -30,4 +30,4 @@ This is useful for enforcing a consistent model usage across different parts of #### Defined in -[src/utils/openaiPatch.ts:8](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/utils/openaiPatch.ts#L8) +[src/utils/openaiPatch.ts:8](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/utils/openaiPatch.ts#L8) diff --git a/docs/js-sdk-docs/modules/utils_xor.md b/docs/js-sdk-docs/modules/utils_xor.md index b4ebd7b65..f902e713a 100644 --- a/docs/js-sdk-docs/modules/utils_xor.md +++ b/docs/js-sdk-docs/modules/utils_xor.md @@ -27,4 +27,4 @@ #### Defined in -[src/utils/xor.ts:1](https://github.com/julep-ai/julep/blob/2427a5e8467e0e6e24dfb9b44e47b5c6ab06feb8/sdks/ts/src/utils/xor.ts#L1) +[src/utils/xor.ts:1](https://github.com/julep-ai/julep/blob/9bcf5a9efc57368b7904f9648f3fe15e5bfc1b0d/sdks/ts/src/utils/xor.ts#L1)