Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions site/src/blog/announcing-typechat-0-1-0.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,8 +200,8 @@ You can [see specifics of this change on GitHub](https://github.com/microsoft/Ty

Other changes to be aware of are:

* `TypeChatJsonProgram` and related functions, such as `createModuleTextFromProgram`, `evaluateJsonProgram`, and `createProgramTranslator` all live in `typechat/ts` ([see PR](https://github.com/microsoft/TypeChat/pull/147)).
* The `processRequests` function for creating a REPL-like prompt now lives in `typechat/interactive` ([see PR](https://github.com/microsoft/TypeChat/pull/221)).
* `TypeChatJsonProgram` and related functions, such as `createModuleTextFromProgram`, `evaluateJsonProgram`, and `createProgramTranslator` all live in `typechat/ts` ([see the pull request for these `TypeChatJsonProgram` changes](https://github.com/microsoft/TypeChat/pull/147)).
* The `processRequests` function for creating a REPL-like prompt now lives in `typechat/interactive` ([see the pull request for these `processRequests` changes](https://github.com/microsoft/TypeChat/pull/221)).

## What's Next?

Expand Down
5 changes: 5 additions & 0 deletions site/src/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,11 @@
background-color: #f5f8fa;
}

.typechat-prose-content pre:focus {
outline: 3px solid #0078d4;
outline-offset: 2px;
}

.typechat-prose-content code {
font-family: var(--typechat-monospace);
color: var(--typechat-inline-code-color);
Expand Down
Loading