新·世界观察日志 – Telegram
新·世界观察日志
6.05K subscribers
1.02K photos
56 videos
27 files
1.16K links
魔幻的世界需要一个观测者

交流群组:
https://news.1rj.ru/str/background_of_new_wol

如因未通过人机验证被误封 请联系 @npgamma
If you get banned for failing the CAPTCHA, hit up @npgamma to get unbanned.

联系频道主: @NPGamma / wolchannel@proton.me
Download Telegram
587c4d93-ed45-4526-b31c-94fb0b808f06.pdf
2.7 MB
《被动放开后的医疗挤兑和感染模型预测》
天风证券股份有限公司

// 该报告已被多个网站下架
🤔2
玩梗玩得飞起😆
😢101
小小一个打码,竟展现出如此大国风范!
https://www.bilibili.com/video/av220560497
ChatGPT未免也太过智能了😨
🤯1
😍13👍1
顶级黑客🤣

// 图中执行的命令是dog,用于查询DNS记录
🤣8
试用了一下ChatGPT,简直颠覆我的认知
下面是由ChatGPT生成的使用requests和python-telegram-bot库制作的调用ChatGPT API的Telegram Bot代码

import requests
from telegram.ext import Updater, MessageHandler, Filters

# Replace <TELEGRAM_BOT_API_KEY> with your own Telegram Bot API key
bot_api_key = "<TELEGRAM_BOT_API_KEY>"

# Replace <CHAT_GPT_API_KEY> with your own ChatGPT API key
chat_gpt_api_key = "<CHAT_GPT_API_KEY>"

# Set the API endpoint URL
chat_gpt_api_url = "https://api.openai.com/v1/chat/gpt2"

# Create a updater object to handle updates from Telegram
updater = Updater(bot_api_key, use_context=True)

# Get the dispatcher to register handlers
dispatcher = updater.dispatcher


def reply_to_message(update, context):
# Extract the message from the update
message = update.message

# Set the parameters for the request to the ChatGPT API
params = {
"prompt": message.text,
"model": "text-davinci-002",
"max_tokens": 256,
}

# Send the request to the ChatGPT API
response = requests.post(
chat_gpt_api_url, json=params, headers={"Authorization": f"Bearer {chat_gpt_api_key}"}
)

# Extract the generated text from the response
generated_text = response.json()["data"]["generated_text"]

# Send the generated text as reply to the message
message.reply_text(generated_text)


# Register the reply_to_message function as a handler for message events
message_handler = MessageHandler(Filters.text, reply_to_message)
dispatcher.add_handler(message_handler)

# Start the bot
updater.start_polling()
🤯10
新·世界观察日志
使用ChatGPT模拟一个Linux虚拟机 // 如果一只鸟走起来像鸭子、游泳起来像鸭子、叫起来也像鸭子,那么这只鸟就可以被称为鸭子。 https://www.engraved.blog/building-a-virtual-machine-inside/
对其中使用的语句进行了一些修改,现在可以让它模拟一个Python解释器了

I want you to act as a Python Compiler. I will type statements and you will reply with what the compiler should show. I want you to only reply with the compiler output inside one unique code block, and nothing else. Do no write explanations. Do not type statements unless I instruct you to do so. When I need to tell you something in English I will do so by putting text inside curly brackets {like this}. My first statement is print("Hello World!").
🤯1
方舟子这人让我看到了德不配位会是个什么样子。

What happened?
方舟子因为李老师(白纸革命中重要报导者)推特粉丝数超过他而多日连续炮轰李老师,并于昨日公开李老师个人信息。
🤬21👎2
实验性的Telegram ChatGPT Bot
@wol_chatgpt_bot
仅供测试,速度略慢,不保证其可用性
3👍1