@@ -175,14 +175,14 @@ def prompt(
175175 path : Optional [str ] = None ,
176176 ** prompt_kernel : Unpack [DecoratorPromptKernelRequestParams ], # type: ignore
177177 ):
178- """Decorator for declaring a (Prompt)[ https://humanloop.com/docs/explanation/prompts] in code.
178+ """Decorator for declaring a [Prompt]( https://humanloop.com/docs/explanation/prompts) in code.
179179
180180 The decorator intercepts calls to LLM provider APIs and creates
181181 a new Prompt file based on the hyperparameters used in the call.
182182 If a hyperparameter is specified in the `@prompt` decorator, then
183183 they override any value intercepted from the LLM provider call.
184184
185- If the (Prompt)[ https://humanloop.com/docs/explanation/prompts] already exists
185+ If the [Prompt]( https://humanloop.com/docs/explanation/prompts) already exists
186186 on the specified path, a new version will be upserted when any of the above change.
187187
188188 Here's an example of declaring a (Prompt)[https://humanloop.com/docs/explanation/prompts] in code:
@@ -200,7 +200,7 @@ def call_llm(messages):
200200 ).choices[0].message.content
201201 ```
202202
203- This will create a (Prompt)[ https://humanloop.com/docs/explanation/prompts] with the following attributes:
203+ This will create a [Prompt]( https://humanloop.com/docs/explanation/prompts] with the following attributes:
204204
205205 ```python
206206 {
@@ -342,9 +342,9 @@ def flow(
342342 ):
343343 """Decorator for declaring a [Flow](https://humanloop.com/docs/explanation/flows) in code.
344344
345- A [Flow](https://humanloop.com/docs/explanation/flows) decorator should be added
346- at the entrypoint of your LLM feature. Call other functions decorated with
347- Humanloop SDK decorators to create a Trace of Logs on Humanloop.
345+ A [Flow](https://humanloop.com/docs/explanation/flows) wrapped callable should
346+ be used as the entrypoint of your LLM feature. Call other functions wrapped with
347+ Humanloop decorators to create a trace of Logs on Humanloop.
348348
349349 Here's an example of declaring a [Flow](https://humanloop.com/docs/explanation/flows) in code:
350350 ```python
0 commit comments