diff --git a/packages/client/src/components/connect/MarkdownEditor.tsx b/packages/client/src/components/connect/MarkdownEditor.tsx
index b9f6fc6..65ba1c1 100644
--- a/packages/client/src/components/connect/MarkdownEditor.tsx
+++ b/packages/client/src/components/connect/MarkdownEditor.tsx
@@ -8,7 +8,6 @@ export const MarkdownEditor = (props: {
}) => {
return (
-
);
diff --git a/packages/client/src/layout/Sidebar.tsx b/packages/client/src/layout/Sidebar.tsx
index f30dcf8..b1198a6 100644
--- a/packages/client/src/layout/Sidebar.tsx
+++ b/packages/client/src/layout/Sidebar.tsx
@@ -59,28 +59,6 @@ function RegulatoryItems({ isMobile }) {
return (
<>
- {
- window.open("https://geoff.seemueller.io");
- }}
- >
- geoff.seemueller.io
-
- {
- window.open("https://seemueller.ai");
- }}
- >
- seemueller.ai
-
-
-[My Resume](https://wellfound.com/u/geoff-seemueller)
-
`;
diff --git a/packages/server/lib/assistant-sdk.ts b/packages/server/lib/assistant-sdk.ts
index e6167a2..89ad57b 100644
--- a/packages/server/lib/assistant-sdk.ts
+++ b/packages/server/lib/assistant-sdk.ts
@@ -1,5 +1,5 @@
-import { Utils } from "./utils.ts";
-import few_shots from "../prompts/few_shots.ts";
+import { Utils } from "./utils";
+import few_shots from "../prompts/few_shots";
export class AssistantSdk {
static getAssistantPrompt(params: {
@@ -12,12 +12,10 @@ export class AssistantSdk {
userTimezone = "UTC",
userLocation = "",
} = params;
- // Handle both nested and flat few_shots structures
// console.log('[DEBUG_LOG] few_shots:', JSON.stringify(few_shots));
let selectedFewshots = Utils.selectEquitably?.(few_shots);
// console.log('[DEBUG_LOG] selectedFewshots after Utils.selectEquitably:', JSON.stringify(selectedFewshots));
if (!selectedFewshots) {
- // If Utils.selectEquitably returns undefined, use few_shots directly
selectedFewshots = few_shots;
// console.log('[DEBUG_LOG] selectedFewshots after fallback:', JSON.stringify(selectedFewshots));
}
@@ -30,7 +28,7 @@ export class AssistantSdk {
return `# Assistant Knowledge
## Current Context
- **Date**: ${currentDate} ${currentTime}
-- **Web Host**: geoff.seemueller.io
+- Web Host open-gsio.seemueller.workers.dev
${maxTokens ? `- **Response Limit**: ${maxTokens} tokens (maximum)` : ""}
- **Lexicographical Format**: Commonmark marked.js with gfm enabled.
- **User Location**: ${userLocation || "Unknown"}
diff --git a/packages/server/prompts/few_shots.ts b/packages/server/prompts/few_shots.ts
index 94affe0..e58a296 100644
--- a/packages/server/prompts/few_shots.ts
+++ b/packages/server/prompts/few_shots.ts
@@ -4,8 +4,8 @@ const a = {
};
const b = {
- "Calculate the number of unique ways to arrange the letters in the word SUCCESS.": `
-Alright, let's tackle 'SUCCESS' and see just how unique it can get!
+ "Calculate the number of unique ways to arrange the letters in the word SUCCESS.":
+ `Alright, let's tackle 'SUCCESS' and see just how unique it can get!
### Step 1: Count the Letters
The word 'SUCCESS' has 7 letters, but it’s no free-for-all—there are repeats!
- S: 3 times
@@ -60,7 +60,6 @@ There are 34,650 unique arrangements of 'MISSISSIPPI'.`,
};
const c = {
- // c remains unchanged as it contains image generation prompts
"Render a Greek statue with warm marble tones and realistic proportions.":
"I don't have the ability to generate images right now. ",
};