🎯【30天涨粉10000人计划—马来西亚纸扎品领域🔥】
👥目标粉丝群体:
- 马来西亚华人社区(以年轻人为主,更易接受创新)
- 对传统文化感兴趣的新一代用户
📌整体定位: 『传统纸扎🔥 × 马来西亚本地风俗 🇲🇾 × 清明节热点🍃』 — 打造一个有温度、有故事、有创意的纸扎文化博主IP。
🎯【30天涨粉10000人计划—马来西亚纸扎品领域🔥】
👥目标粉丝群体:
📌整体定位: 『传统纸扎🔥 × 马来西亚本地风俗 🇲🇾 × 清明节热点🍃』 — 打造一个有温度、有故事、有创意的纸扎文化博主IP。
Alright, nasi lemak — an iconic dish with a rich cultural story and huge market potential. Here's exactly how I'd approach growing an Instagram account to 10k followers in just 30 days:
Every piece of content you create should either educate, entertain, inspire, or drive desire. These four aspects will pull people towards your nasi lemak.
# This is to help us to install gradio | |
# an user interface builder | |
!pip install gradio | |
open_ai_key='' | |
import gradio as gr | |
gr.load_chat(base_url='https://api.openai.com/v1/', model='gpt-4o-mini',token=open_ai_key).launch(debug=True) |
import streamlit as st | |
import openai | |
from datetime import datetime | |
# Set your OpenAI API key | |
# st.secrets["OPENAI_API_KEY"] should be set in Streamlit's secrets management | |
client = openai.OpenAI(api_key=st.secrets["OPENAI_API_KEY"]) | |
def get_personality_prediction(birthdate): |
function getHealthAdvice(height, weight) { | |
const apiKey = "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"; // Replace with your actual API key | |
const apiUrl = "https://api.openai.com/v1/chat/completions"; | |
const prompt = `Given a person whose height is ${height} cm, weight is ${weight} kg, calculate their BMI and also give some health advice. Please reply in Simplified Chinese.`; | |
const payload = { | |
"model": "gpt-4o-mini", | |
"messages": [{"role": "user", "content": prompt}], | |
"temperature": 0.7 |
function getHealthAdvice(height, weight) { | |
const apiKey = "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"; // Replace with your actual API key | |
const apiUrl = "https://api.openai.com/v1/chat/completions"; | |
const prompt = `Given a person with a height of ${height} cm and a weight of ${weight} kg, calculate their BMI, and provide a brief health advice focusing on maintaining a healthy weight and lifestyle, based on the BMI. Return results with plain text, no formatting required.`; | |
const payload = { | |
"model": "gpt-4o-mini", | |
"messages": [{"role": "user", "content": prompt}], | |
"temperature": 0.7 |
function hello() { | |
Logger.log(2+3) | |
} | |
function getHealthAdvice(height, weight, gender) { | |
const apiKey="put your api key here" | |
const apiUrl = "https://api.openai.com/v1/chat/completions"; | |
const prompt = `Given a person of gender ${gender} with a height of ${height} cm and a weight of ${weight} kg, calculate their BMI, and provide a brief health advice focusing on maintaining a healthy weight and lifestyle, based on the BMI. Return results with plain text, no formatting required. Don't show the BMI calculation, just return the health advice only.`; |
function hello() { | |
Logger.log(2+3) | |
} | |
function getHealthAdvice(height, weight) { | |
const apiKey="PUT YOUR API KEY HERE" | |
const apiUrl = "https://api.openai.com/v1/chat/completions"; | |
const prompt = `Given a person with a height of ${height} cm and a weight of ${weight} kg, calculate their BMI, and provide a brief health advice focusing on maintaining a healthy weight and lifestyle, based on the BMI. Return results with plain text, no formatting required.`; |
{ | |
"burgers": [ | |
{ | |
"name": "Crispy Chicken", | |
"image":"crispy-chicken.jpg", | |
"description": "Chicken breast, chilli sauce, tomatoes, pickles, coleslaw", | |
"price": 11.99 | |
}, | |
{ | |
"name": "Ultimate Bacon", |
from flask import Flask | |
app = Flask(__name__) | |
@app.route("/") | |
def hello_world(): | |
return "<p>Hello, World!</p>" |