From 255e9b50080e7aa319a58133a72186ef44079d46 Mon Sep 17 00:00:00 2001 From: Jason Date: Tue, 5 Sep 2023 21:38:02 -0500 Subject: [PATCH] rename prompt engineering --- docs/tips/index.md | 4 ++-- mkdocs.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/tips/index.md b/docs/tips/index.md index 5a73d94..4cee5ad 100644 --- a/docs/tips/index.md +++ b/docs/tips/index.md @@ -1,6 +1,6 @@ -# Tips for Structure Engineering in Python +# Prompt Engineering for Function Calling -The overarching theme is to make the models as self-descriptive, modular, and flexible as possible, while maintaining data integrity and ease of use. +The overarching theme of using instructor and pydantic for function calling is to make the models as self-descriptive, modular, and flexible as possible, while maintaining data integrity and ease of use. - **Modularity**: Design self-contained components for reuse. - **Self-Description**: Use Pydantic's `Field` for clear field descriptions. diff --git a/mkdocs.yml b/mkdocs.yml index 74e53ad..1d1eb2c 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -57,7 +57,7 @@ nav: - 'Exact Citations': 'examples/exact_citations.md' - 'Automated Dataframe Extraction': "examples/autodataframe.md" - 'Creating multiple file programs': "examples/gpt-engineer.md" - - Structure Engineering Tips: 'tips/index.md' + - Prompt Engineering Tips: 'tips/index.md' - API Reference: - 'OpenAISchema': 'openai_schema.md' - 'MultiTask': 'api_multitask.md'