Skip to content

Commit

Permalink
cr
Browse files Browse the repository at this point in the history
  • Loading branch information
bracesproul committed Feb 23, 2024
1 parent 329b5de commit f9b491a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions frontend/app/components/ChatMessageBubble.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -177,8 +177,8 @@ export function ChatMessageBubble(props: {
const viewTrace = async () => {
try {
setTraceIsLoading(true);
console.log(apiBaseUrl)
console.log(process.env)
console.log(apiBaseUrl);
console.log(process.env);
const response = await fetch(apiBaseUrl + "/get_trace", {
method: "POST",
headers: {
Expand Down
4 changes: 2 additions & 2 deletions frontend/app/components/ChatWindow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ export function ChatWindow(props: { conversationId: string }) {
marked.setOptions({ renderer });

try {
console.log(apiBaseUrl)
console.log(process.env)
console.log(apiBaseUrl);
console.log(process.env);
const sourceStepName = "FindDocs";
let streamedResponse: Record<string, any> = {};
const remoteChain = new RemoteRunnable({
Expand Down

0 comments on commit f9b491a

Please sign in to comment.