We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecc9281 commit 737efe9Copy full SHA for 737efe9
pydantic_ai_slim/pydantic_ai/_cli.py
@@ -23,6 +23,7 @@
23
24
try:
25
import click
26
+ import pyperclip
27
from click import HelpFormatter
28
from prompt_toolkit import PromptSession
29
from prompt_toolkit.auto_suggest import AutoSuggestFromHistory, Suggestion
pydantic_ai_slim/pyproject.toml
@@ -80,7 +80,12 @@ huggingface = ["huggingface-hub[inference]>=0.33.5"]
80
duckduckgo = ["ddgs>=9.0.0"]
81
tavily = ["tavily-python>=0.5.0"]
82
# CLI
83
-cli = ["rich>=13", "prompt-toolkit>=3", "click>=8.0.0"]
+cli = [
84
+ "rich>=13",
85
+ "prompt-toolkit>=3",
86
+ "click>=8.0.0",
87
+ "pyperclip>=1.9.0",
88
+]
89
# MCP
90
mcp = ["mcp>=1.12.3"]
91
# Evals
0 commit comments