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
2 changes: 1 addition & 1 deletion .goosehints
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ that you can call the functionality from the server from the typescript.

tips:
- can look at unstaged changes for what is being worked on if starting
- always check rust compiles, cargo fmt etc and cargo clippy -- -D warnings (as well as run tests in files you are working on)
- always check rust compiles, cargo fmt etc and `./scripts/clippy-lint.sh` (as well as run tests in files you are working on)
- in ui/desktop, look at how you can run lint checks and if other tests can run
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,6 @@ impl EditorModelImpl for MorphLLMEditor {
_old_str: &str,
update_snippet: &str,
) -> Result<String, String> {
eprintln!("Calling MorphLLM Editor API");

// Construct the full URL
let provider_url = if self.host.ends_with("/chat/completions") {
self.host.clone()
Expand Down Expand Up @@ -128,7 +126,6 @@ impl EditorModelImpl for MorphLLMEditor {
.and_then(|content| content.as_str())
.ok_or_else(|| "Invalid response format".to_string())?;

eprintln!("MorphLLM Editor API worked");
Ok(content.to_string())
}

Expand Down
Loading
Loading