-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathmkdocs.yml
More file actions
116 lines (112 loc) · 4.35 KB
/
mkdocs.yml
File metadata and controls
116 lines (112 loc) · 4.35 KB
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
site_name: SyGra
site_description: Graph-oriented Synthetic data generation Pipeline
site_url: https://servicenow.github.io/sygra/
repo_url: https://github.com/ServiceNow/sygra
theme:
name: material
logo: resources/images/sygra_logo.png
favicon: resources/images/sygra_logo.png
font:
text: Roboto
code: Fira Code
icon:
repo: fontawesome/brands/github-alt
features:
- navigation.tabs
- navigation.expand
- navigation.path
- toc.follow
- content.code.copy
- content.code.select
- content.code.annotate
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: custom
accent: custom
toggle:
icon: material/weather-night
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: custom
accent: custom
toggle:
icon: material/weather-sunny
name: Switch to light mode
extra_css:
- resources/css/servicenow.css
markdown_extensions:
- admonition
- toc:
permalink: true
- pymdownx.details
- pymdownx.superfences
nav:
- Getting Started:
- Welcome: index.md
- Installation: installation.md
- Task Executor: getting_started/Task_Executor.md
- Model Configuration: getting_started/model_configuration.md
- Graph Config Guide: getting_started/graph_config_guide.md
- Adding Edges: getting_started/adding_edges.md
- Create a Synthetic Datagen Pipeline: getting_started/create_new_pipeline.md
- SyGra Studio: getting_started/create_task_ui.md
- Evaluation: eval/README.md
- Concepts:
- Data Handler:
- Overview: concepts/data_handler/README.md
- File System Handler: concepts/data_handler/file_system.md
- HuggingFace Handler: concepts/data_handler/huggingface.md
- ServiceNow Handler: concepts/data_handler/servicenow.md
- Data Mapper: concepts/data_mapper/README.md
- Data Quality: concepts/data_quality/README.md
- Multimodal:
- Audio to Text: concepts/multimodal/audio_to_text.md
- Image to Text: concepts/multimodal/image_to_text.md
- Text to Speech: concepts/multimodal/text_to_speech.md
- Image Generation: concepts/multimodal/image_generation.md
- GPT-4o (Audio): concepts/multimodal/gpt_4o_audio.md
- Nodes:
- Agent Node: concepts/nodes/agent_node.md
- Lambda Node: concepts/nodes/lambda_node.md
- LLM Node: concepts/nodes/llm_node.md
- Multi LLM Node: concepts/nodes/multi_llm_node.md
- Subgraph Node: concepts/nodes/subgraph_node.md
- Weighted Sampler Node: concepts/nodes/weighted_sampler_node.md
- Processors:
- Output Record Generator: concepts/processors/output_record_generator/README.md
- Schema Validator: concepts/schema_validator/README.md
- Structured Output: concepts/structured_output/README.md
- Features:
- Metadata Tracking: features/metadata_tracking.md
- Semantic Deduplication: features/semantic_deduplication.md
- Self Refinement: features/self_refinement.md
- Tutorials:
- Agent Simulation: tutorials/agent_simulation_tutorial.md
- Agent Simulation with Tools: tutorials/agent_tool_simulation_tutorial.md
- Audio Classification: tutorials/audio_to_text_tutorial.md
- Custom Subgraphs: tutorials/custom_subgraphs_tutorial.md
- Evolution of Prompts with Evol-Instruct: tutorials/evol_instruct_tutorial.md
- Self Improving Code Assistant: tutorials/glaive_code_assistant_tutorial.md
- Image to QnA: tutorials/image_to_qna_tutorial.md
- Structured Output: tutorials/structured_output_tutorial.md
- Structured Output with Multi-LLM: tutorials/structured_output_with_multi_llm_tutorial.md
- SyGra Library:
- API Reference: library/sygra_library.md
- Examples: library/sygra_library_examples.md
- Evaluation:
- Overview: eval/README.md
- Metric:
- Overview: eval/metrics/README.md
- Unit Metrics: eval/metrics/unit_metrics_summary.md
- Aggregator Metrics: eval/metrics/aggregator_metrics_summary.md
- Agents:
- Web Agents Evaluation: eval/agents/web_agents_eval.md
- Contribute: development.md
plugins:
- search
- include-markdown
# - include-markdown:
# rewrite_relative_urls: true
# heading_offset: 0