-
Notifications
You must be signed in to change notification settings - Fork 9
/
Makefile
96 lines (81 loc) · 3.96 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
.PHONY: examples agents evals logging
agents:
LOG10_EXAMPLES_MODEL=noop python examples/agents/biochemist.py
LOG10_EXAMPLES_MODEL=noop python examples/agents/code_optimizer.py
LOG10_EXAMPLES_MODEL=noop python examples/agents/coder.py
LOG10_EXAMPLES_MODEL=noop python examples/agents/cybersecurity_expert.py
LOG10_EXAMPLES_MODEL=noop python examples/agents/email_generator.py
LOG10_EXAMPLES_MODEL=noop python examples/agents/scrape_summarizer.py
LOG10_EXAMPLES_MODEL=noop python examples/agents/translator.py
LOG10_EXAMPLES_MODEL=gpt-3.5-turbo-16k python examples/agents/biochemist.py
LOG10_EXAMPLES_MODEL=gpt-3.5-turbo-16k python examples/agents/code_optimizer.py
LOG10_EXAMPLES_MODEL=gpt-3.5-turbo-16k python examples/agents/coder.py
LOG10_EXAMPLES_MODEL=gpt-3.5-turbo-16k python examples/agents/cybersecurity_expert.py
LOG10_EXAMPLES_MODEL=gpt-3.5-turbo-16k python examples/agents/email_generator.py
LOG10_EXAMPLES_MODEL=gpt-3.5-turbo-16k python examples/agents/scrape_summarizer.py
LOG10_EXAMPLES_MODEL=gpt-3.5-turbo-16k python examples/agents/translator.py
LOG10_EXAMPLES_MODEL=claude-2 python examples/agents/biochemist.py
LOG10_EXAMPLES_MODEL=claude-2 python examples/agents/code_optimizer.py
LOG10_EXAMPLES_MODEL=claude-2 python examples/agents/coder.py
LOG10_EXAMPLES_MODEL=claude-2 python examples/agents/cybersecurity_expert.py
LOG10_EXAMPLES_MODEL=claude-2 python examples/agents/email_generator.py
LOG10_EXAMPLES_MODEL=claude-2 python examples/agents/scrape_summarizer.py
LOG10_EXAMPLES_MODEL=claude-2 python examples/agents/translator.py
logging:
python examples/logging/anthropic_completion.py
python examples/logging/chatcompletion.py
python examples/logging/chatcompletion_async_vs_sync.py
python examples/logging/completion.py
python examples/logging/completion_simple.py
python examples/logging/get_url.py
# python examples/logging/langchain_babyagi.py
python examples/logging/langchain_model_logger.py
evals:
(cd examples/evals && python basic_eval.py)
(cd examples/evals && python compile.py)
(cd examples/evals && python fuzzy.py)
examples: agents evals logging
logging-completion:
python examples/logging/openai_completions.py
python examples/logging/anthropic_completion.py
logging-chat:
python examples/logging/anthropic_messages.py
python examples/logging/mistralai_chat_no_streaming.py
python examples/logging/openai_chat.py
python examples/logging/openai_chat_not_given.py
# python examples/logging/vertexai_gemini_chat.py
python examples/logging/openai_async_logging.py
python examples/logging/openai_async_stream_logging.py
python examples/logging/google_genai_gemini_chat.py
python examples/logging/google_genai_gemini_chat_w_history.py
logging-chat-stream:
python examples/logging/openai_chat_stream.py
python examples/logging/anthropic_messages_stream.py
python examples/logging/mistralai_chat_with_streaming.py
python examples/logging/litellm_completion_stream.py
logging-image:
python examples/logging/openai_chat_image.py
python examples/logging/anthropic_messages_image.py
python examples/logging/litellm_image.py
logging-tools:
python examples/logging/openai_tools.py
python examples/logging/openai_tools_stream.py
python examples/logging/openai_async_tools_stream.py
logging-tags:
python examples/logging/tags_mixed.py
python examples/logging/tags_openai.py
logging-magentic:
python examples/logging/magentic_prompt.py
python examples/logging/magentic_prompt_stream.py
python examples/logging/magentic_function_logging.py
python examples/logging/magentic_async_stream_logging.py
python examples/logging/magentic_async_parallel_function_call.py
python examples/logging/magentic_async_multi_session_tags.py
python examples/logging/magentic_async_widget.py
logging-langchain:
python -m xdoctest log10/load.py log10:2
python -m xdoctest log10/load.py log10:4
logging-litellm:
python examples/logging/litellm_async_stream_completion.py
python examples/logging/litellm_image_stream.py
python examples/logging/litellm_image_async_stream.py