You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using wildcard imports (use rust_chatgpt::*;) is discouraged as it makes it unclear which items are being imported and can lead to namespace pollution. Consider importing specific items like use rust_chatgpt::{ChatGpt, ChatGptRequestChatCompletions};. #3
Using wildcard imports (use rust_chatgpt::*;) is discouraged as it makes it unclear which items are being imported and can lead to namespace pollution. Consider importing specific items like use rust_chatgpt::{ChatGpt, ChatGptRequestChatCompletions};.
use rust_chatgpt::{ChatGpt, ChatGptRequestChatCompletions, ChatGptChatFormat};
Using wildcard imports (
use rust_chatgpt::*;) is discouraged as it makes it unclear which items are being imported and can lead to namespace pollution. Consider importing specific items likeuse rust_chatgpt::{ChatGpt, ChatGptRequestChatCompletions};.Originally posted by @Copilot in #2 (comment)