Skip to content

Commit

Permalink
docs: update search boosting for learn pages
Browse files Browse the repository at this point in the history
  • Loading branch information
William Bakst committed Nov 21, 2024
1 parent 74bd210 commit 5a5473c
Show file tree
Hide file tree
Showing 12 changed files with 60 additions and 0 deletions.
5 changes: 5 additions & 0 deletions docs/learn/agents.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
search:
boost: 2
---

# Agents

> __Definition__: a person who acts on behalf of another person or group
Expand Down
5 changes: 5 additions & 0 deletions docs/learn/async.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
search:
boost: 2
---

# Async

Asynchronous programming is a crucial concept when building applications with LLMs (Large Language Models) using Mirascope. This feature allows for efficient handling of I/O-bound operations (e.g., API calls), improving application responsiveness and scalability. Mirascope utilizes the [asyncio](https://docs.python.org/3/library/asyncio.html) library to implement asynchronous processing.
Expand Down
5 changes: 5 additions & 0 deletions docs/learn/calls.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
search:
boost: 3
---

# Calls

!!! mira ""
Expand Down
5 changes: 5 additions & 0 deletions docs/learn/chaining.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
search:
boost: 2
---

# Chaining

!!! mira ""
Expand Down
5 changes: 5 additions & 0 deletions docs/learn/evals.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
search:
boost: 2
---

# Evals: Evaluating LLM Outputs

!!! mira ""
Expand Down
5 changes: 5 additions & 0 deletions docs/learn/json_mode.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
search:
boost: 2
---

# JSON Mode

!!! mira ""
Expand Down
5 changes: 5 additions & 0 deletions docs/learn/output_parsers.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
search:
boost: 2
---

# Output Parsers

!!! mira ""
Expand Down
5 changes: 5 additions & 0 deletions docs/learn/prompts.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
search:
boost: 3
---

# Prompts

When working with Large Language Model (LLM) APIs, the "prompt" is generally a list of messages where each message has a particular role. These prompts are the foundation of effectively working with LLMs, so Mirascope provides powerful tools to help you create, manage, and optimize your prompts for various LLM interactions.
Expand Down
5 changes: 5 additions & 0 deletions docs/learn/response_models.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
search:
boost: 2
---

# Response Models

!!! mira ""
Expand Down
5 changes: 5 additions & 0 deletions docs/learn/retries.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
search:
boost: 2
---

# Retries

Making an API call to a provider can fail due to various reasons, such as rate limits, internal server errors, validation errors, and more. This makes retrying calls extremely important when building robust systems.
Expand Down
5 changes: 5 additions & 0 deletions docs/learn/streams.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
search:
boost: 2
---

# Streams

!!! mira ""
Expand Down
5 changes: 5 additions & 0 deletions docs/learn/tools.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
search:
boost: 2
---

# Tools

{% set tool_methods = [["base_tool", "BaseTool"], ["function", "Function"]] %}
Expand Down

0 comments on commit 5a5473c

Please sign in to comment.