Skip to content

Commit d146537

Browse files
committed
build fixes and broken link fixes
1 parent f2c689c commit d146537

File tree

2 files changed

+127
-847
lines changed

2 files changed

+127
-847
lines changed

docs/docs/quick-start/getting-started-01.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ dspy.configure(lm=lm)
2323

2424
You can always prompt the LM directly via `lm(prompt="prompt")` or `lm(messages=[...])`. However, DSPy gives you `Modules` as a better way to define your LM functions.
2525

26-
The simplest module is `dspy.Predict`. It takes a [DSPy Signature](/docs/building-blocks/2-signatures), i.e. a structured input/output schema, and gives you back a callable function for the behavior you specified. Let's use the "in-line" notation for signatures to declare a module that takes a `question` (of type `str`) as input and produces a `response` as an output.
26+
The simplest module is `dspy.Predict`. It takes a [DSPy Signature](/docs/building-blocks/signatures), i.e. a structured input/output schema, and gives you back a callable function for the behavior you specified. Let's use the "in-line" notation for signatures to declare a module that takes a `question` (of type `str`) as input and produces a `response` as an output.
2727

2828
```python
2929
qa = dspy.Predict('question: str -> response: str')

0 commit comments

Comments
 (0)