Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions langfuse/api/reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -5123,7 +5123,10 @@ client.prompt_version.update(
<dl>
<dd>

**name:** `str` — The name of the prompt
**name:** `str`

The name of the prompt. If the prompt is in a folder (e.g., "folder/subfolder/prompt-name"),
the folder path must be URL encoded.

</dd>
</dl>
Expand Down Expand Up @@ -5215,7 +5218,10 @@ client.prompts.get(
<dl>
<dd>

**prompt_name:** `str` — The name of the prompt
**prompt_name:** `str`

The name of the prompt. If the prompt is in a folder (e.g., "folder/subfolder/prompt-name"),
the folder path must be URL encoded.

</dd>
</dl>
Expand Down
6 changes: 4 additions & 2 deletions langfuse/api/resources/prompt_version/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ def update(
Parameters
----------
name : str
The name of the prompt
The name of the prompt. If the prompt is in a folder (e.g., "folder/subfolder/prompt-name"),
the folder path must be URL encoded.

version : int
Version of the prompt to update
Expand Down Expand Up @@ -122,7 +123,8 @@ async def update(
Parameters
----------
name : str
The name of the prompt
The name of the prompt. If the prompt is in a folder (e.g., "folder/subfolder/prompt-name"),
the folder path must be URL encoded.

version : int
Version of the prompt to update
Expand Down
6 changes: 4 additions & 2 deletions langfuse/api/resources/prompts/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ def get(
Parameters
----------
prompt_name : str
The name of the prompt
The name of the prompt. If the prompt is in a folder (e.g., "folder/subfolder/prompt-name"),
the folder path must be URL encoded.

version : typing.Optional[int]
Version of the prompt to be retrieved.
Expand Down Expand Up @@ -310,7 +311,8 @@ async def get(
Parameters
----------
prompt_name : str
The name of the prompt
The name of the prompt. If the prompt is in a folder (e.g., "folder/subfolder/prompt-name"),
the folder path must be URL encoded.

version : typing.Optional[int]
Version of the prompt to be retrieved.
Expand Down
Loading