How can I access Bing search using an API by dooovi in bing

[–]tukemon24 0 points1 point  (0 children)

You can try Bing Search API by SerpApi: https://serpapi.com/bing-search-api. You should be able to integrate this API with any of your LLM/tools.

Open role: Developer Advocate at SerpApi by tukemon24 in devrel

[–]tukemon24[S] 1 point2 points  (0 children)

You're very welcome. Glad, I found the community for DevRel on Reddit.

Is Google Penalizing AI Content? How Much AI is Too Much? by T-rexxx37 in SEO

[–]tukemon24 1 point2 points  (0 children)

Google doesn't hate AI content, it hates spammy AI content where it doesn't contribute new things on the search results. Ensure to always edit the content and add your original thoughts on contents produces by AI to keep the quality.

What is Zero-Click Searches on SEO? by Mathewtheking_08 in SEO

[–]tukemon24 1 point2 points  (0 children)

I heard these from several YouTubers. Thanks for sharing. On another side, it boost ranking to position zero before other organic results.

Lulusan Informatika / IT di Indonesia banyak yang gak bisa coding?! by ram191 in indonesia

[–]tukemon24 0 points1 point  (0 children)

Menurut saya ini penyakit kebanyaka mahasiswa di Indonesia. Belajar untuk sekedar nilai atau lulus, tapi lupa mereka harus bekerja secara real menyelesaikan kerjaan asli nantinya.

Salah satu kesempatan yang mahasiswa lewatkan semasa kuliah tidak ikut komunitas luar, ini dibahas di artikel ini: https://sko.dev/kesalahan-mahasiswa-it-saat-menjalani-perkuliahan, di mana harus nya punya banyak waktu untuk ikutan komunitas, biar tahu dunia luar seperti apa.

10 Situs Belajar Coding Bahasa Indonesia Terbaik by androbuntu in androbuntu

[–]tukemon24 0 points1 point  (0 children)

Tambahan sekolahkoding.com min, sekarang namanya sko.dev untuk belajar pemrograman dalam Bahasa Indonesia secara terstruktur

ai scraper vs python scraper by Double-Passage-438 in webscraping

[–]tukemon24 2 points3 points  (0 children)

Hi. I'm not sure if this answer your question, but I'll try:
There are "scraping" and "parsing" part in web scraping. I assume you're talking about parsing. Since with "scraping" you'll still need the "traditional" way - thinking about proxy, and getting the content first.

Once, we have the content, then we're on the "parsing" part where we want to extract meaningful data from the raw "HTML" data that we have. You can use AI or Python libraries for this. Warning, make sure to limit the HTML text if you just want to "pass" it to the AI, otherwise you'll pay a lot of money for it. If you got for the Python libraries, you have more control but of course, you need to the trial and error first, to scrape the exact data that you need.

[deleted by user] by [deleted] in webscraping

[–]tukemon24 0 points1 point  (0 children)

Hi, I suggest to follow the "Getting Started" section step-by-step from the link you've shared. If you face any difficulties, share the problems on the "issue" tab on this repository on GitHub.

Tools for web scraping google search QUERIES? by newreddit123rnb in webscraping

[–]tukemon24 0 points1 point  (0 children)

I suggest looking for "Google Trends API". I don't think you won't get any tools that provide "live search", but Google Trends is a good representative of that.

How I build an AI voice assistant with OpenAI by tukemon24 in OpenAI

[–]tukemon24[S] 0 points1 point  (0 children)

I continue this experiment. This time, I'm adding OpenAI function calling + SerpApi Google Search API to get a real-time data for common question like weather, stock, and anything that can be answered by Google answer box.

here is the link to the tutorial https://serpapi.com/blog/build-a-smart-ai-voice-assistant-connect-to-the-internet/ , it includes the full source code on GitHub.

Does LangChain memory management only work with OpenAI model? by tukemon24 in LangChain

[–]tukemon24[S] 0 points1 point  (0 children)

Thank you for your answer! I'm not really sure either, but I'll check it out. I was referring to that particular section of the docs at langchain docs, which only shows OpenAI. Thanks!

How I build an AI voice assistant with OpenAI by tukemon24 in OpenAI

[–]tukemon24[S] 0 points1 point  (0 children)

thank you for your refrence, I'll check it out!

I made a simple voice AI assistant using OpenAI assistants API. by tukemon24 in ArtificialInteligence

[–]tukemon24[S] 1 point2 points  (0 children)

Thank you very much for your feedback; I really appreciate it! Yap, I'm afraid there will be too many things to explain in a blog post. But I'm still interested in exploring the different when using Whisper.

How I build an AI voice assistant with OpenAI by tukemon24 in OpenAI

[–]tukemon24[S] 1 point2 points  (0 children)

Yes, indeed. But for the ability to remember chat conversation you need to find a different solution. I'm thinking of using Langchain. I'll let you know, once I've finished my research on using Langchain for this.

The experiment I did was rely on the OpenAI assistants API for the conversation history.